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 {
2424 private [this ] def tempDir = {
2525 if (_tempDir == null ) {
2626 _tempDir = Files .createTempDirectory(" backup" ).toFile
27- println(s " ClassFileManager.tempDir: creating ${_tempDir} in $this" )
2827 }
2928 _tempDir
3029 }
@@ -50,7 +49,6 @@ final class TastyFileManager extends ClassFileManager {
5049 for ((orig, tmp) <- movedTastyFiles) IO .move(tmp, orig)
5150 }
5251 if (_tempDir != null ) {
53- println(s " ClassFileManager.complete( $success): deleting $tempDir from $this" )
5452 IO .delete(tempDir)
5553 _tempDir = null
5654 }
@@ -67,7 +65,6 @@ final class TastyFileManager extends ClassFileManager {
6765 }
6866
6967 private def move (c : File ): File = {
70- println(s " ClassFileManager.delete: maybe using $tempDir in $this" )
7168 val target = File .createTempFile(" sbt" , " .tasty" , tempDir)
7269 IO .move(c, target)
7370 target
You can’t perform that action at this time.
0 commit comments