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 @@ -24,7 +24,6 @@ final class TastyFileManager extends ClassFileManager {
24
24
private [this ] def tempDir = {
25
25
if (_tempDir == null ) {
26
26
_tempDir = Files .createTempDirectory(" backup" ).toFile
27
- println(s " ClassFileManager.tempDir: creating ${_tempDir} in $this" )
28
27
}
29
28
_tempDir
30
29
}
@@ -50,7 +49,6 @@ final class TastyFileManager extends ClassFileManager {
50
49
for ((orig, tmp) <- movedTastyFiles) IO .move(tmp, orig)
51
50
}
52
51
if (_tempDir != null ) {
53
- println(s " ClassFileManager.complete( $success): deleting $tempDir from $this" )
54
52
IO .delete(tempDir)
55
53
_tempDir = null
56
54
}
@@ -67,7 +65,6 @@ final class TastyFileManager extends ClassFileManager {
67
65
}
68
66
69
67
private def move (c : File ): File = {
70
- println(s " ClassFileManager.delete: maybe using $tempDir in $this" )
71
68
val target = File .createTempFile(" sbt" , " .tasty" , tempDir)
72
69
IO .move(c, target)
73
70
target
You can’t perform that action at this time.
0 commit comments