Skip to content

Commit 0d4dc18

Browse files
committed
Delete println instrumentation
That was only for history, not to be left in the actual plugin.
1 parent 635b634 commit 0d4dc18

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sbt-dotty/src/dotty/tools/sbtplugin/TastyFileManager.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)