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 {
2525 private [this ] def tempDir = {
2626 if (_tempDir == null ) {
2727 _tempDir = newTempDir()
28- println(s " ClassFileManager.tempDir: creating ${_tempDir} in $this" )
2928 }
3029 _tempDir
3130 }
@@ -51,7 +50,6 @@ final class TastyFileManager extends ClassFileManager {
5150 for ((orig, tmp) <- movedTastyFiles) IO .move(tmp, orig)
5251 }
5352 if (_tempDir != null ) {
54- println(s " ClassFileManager.complete( $success): deleting $tempDir from $this" )
5553 IO .delete(tempDir)
5654 _tempDir = null
5755 }
@@ -68,7 +66,6 @@ final class TastyFileManager extends ClassFileManager {
6866 }
6967
7068 private def move (c : File ): File = {
71- println(s " ClassFileManager.delete: maybe using $tempDir in $this" )
7269 val target = File .createTempFile(" sbt" , " .tasty" , tempDir)
7370 IO .move(c, target)
7471 target
You can’t perform that action at this time.
0 commit comments