Skip to content

Commit f0b2892

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

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
@@ -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

0 commit comments

Comments
 (0)