diff options
author | decebals <decebal.suiu@gmail.com> | 2019-03-21 10:56:49 +0200 |
---|---|---|
committer | decebals <decebal.suiu@gmail.com> | 2019-03-21 10:56:49 +0200 |
commit | 3ffde097b376cfd5f4ce0c9ae4bc44732c0c4d08 (patch) | |
tree | 3467822c357046d8a67f68c88a697113df47c989 /pf4j | |
parent | f38605432b9ad9d91dbb479dcf08a5f53f0fc285 (diff) | |
download | pf4j-3ffde097b376cfd5f4ce0c9ae4bc44732c0c4d08.tar.gz pf4j-3ffde097b376cfd5f4ce0c9ae4bc44732c0c4d08.zip |
Fix the compilation error introduced by the previous commit
Diffstat (limited to 'pf4j')
-rw-r--r-- | pf4j/src/main/java/org/pf4j/util/FileUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pf4j/src/main/java/org/pf4j/util/FileUtils.java b/pf4j/src/main/java/org/pf4j/util/FileUtils.java index 5c84b2a..7bd7abe 100644 --- a/pf4j/src/main/java/org/pf4j/util/FileUtils.java +++ b/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 { |