Skip to content

Commit

Permalink
Remove printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
lolgab committed May 29, 2024
1 parent d84a8cf commit 13ecbff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions os/test/src/TestUtil.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,11 @@ object TestUtil {
directory,
new SimpleFileVisitor[Path]() {
override def visitFile(file: Path, attrs: BasicFileAttributes) = {
println("visitFile " + file)
Files.delete(file)
FileVisitResult.CONTINUE
}

override def postVisitDirectory(dir: Path, exc: IOException) = {
println("postVisitDirectory " + dir)
Files.delete(dir)
FileVisitResult.CONTINUE
}
Expand Down

0 comments on commit 13ecbff

Please sign in to comment.