mirror of https://github.com/sbt/sbt.git
Removes println when removing unused *.class files.
#1525 removes unused *.class files created by the metabuid. The implementation currently prints out a long list of *.class files it’s about to remove. Unless something bad happens, this information is not very useful to the user, so I suggest we don’t display it.
This commit is contained in:
parent
23f9dc26c7
commit
e2412740b2
|
|
@ -262,7 +262,6 @@ object Load {
|
|||
val existing = (baseTarget.***.get).filterNot(_.isDirectory)
|
||||
val toDelete = existing.filterNot(keepFile)
|
||||
if (!toDelete.isEmpty) {
|
||||
System.err.println(s"Discovered unused files: ${toDelete.mkString("\n * ", "\n * ", "\n")}. Note: Please reload all other running sbt instances in $base")
|
||||
IO.delete(toDelete)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue