File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
sbt-dotty/src/dotty/tools/sbtplugin Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ final class TastyFileManager extends ClassFileManager {
25
25
private [this ] def tempDir = {
26
26
if (_tempDir == null ) {
27
27
_tempDir = newTempDir()
28
- println(s " ClassFileManager.tempDir: creating ${_tempDir} in $this" )
29
28
}
30
29
_tempDir
31
30
}
@@ -51,7 +50,6 @@ final class TastyFileManager extends ClassFileManager {
51
50
for ((orig, tmp) <- movedTastyFiles) IO .move(tmp, orig)
52
51
}
53
52
if (_tempDir != null ) {
54
- println(s " ClassFileManager.complete( $success): deleting $tempDir from $this" )
55
53
IO .delete(tempDir)
56
54
_tempDir = null
57
55
}
@@ -68,7 +66,6 @@ final class TastyFileManager extends ClassFileManager {
68
66
}
69
67
70
68
private def move (c : File ): File = {
71
- println(s " ClassFileManager.delete: maybe using $tempDir in $this" )
72
69
val target = File .createTempFile(" sbt" , " .tasty" , tempDir)
73
70
IO .move(c, target)
74
71
target
You can’t perform that action at this time.
0 commit comments