Browse Source

Fix the compilation error introduced by the previous commit

pull/305/head
decebals 6 years ago
parent
commit
3ffde097b3
  1. 2
      pf4j/src/main/java/org/pf4j/util/FileUtils.java

2
pf4j/src/main/java/org/pf4j/util/FileUtils.java

@ -77,7 +77,7 @@ public class FileUtils {
* @throws IOException if something goes wrong
*/
public static void delete(Path path) throws IOException {
Files.walkFileTree(path, new SimpleFileVisitor<>() {
Files.walkFileTree(path, new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path path, BasicFileAttributes attrs) throws IOException {

Loading…
Cancel
Save