(Path file, BasicFileAttributes attrs)
| 32 | try { |
| 33 | Files.walkFileTree(Paths.get(goal), new SimpleFileVisitor<>() { |
| 34 | @Override |
| 35 | public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { |
| 36 | Files.delete(file); |
| 37 | return FileVisitResult.CONTINUE; |
| 38 | } |
| 39 | |
| 40 | @Override |
| 41 | public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException { |
nothing calls this directly
no outgoing calls
no test coverage detected