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:
Eugene Yokota 2014-08-18 01:12:39 -04:00
parent 23f9dc26c7
commit e2412740b2
1 changed files with 0 additions and 1 deletions

View File

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