aboutsummaryrefslogtreecommitdiffstats
path: root/pf4j
diff options
context:
space:
mode:
authordecebals <decebal.suiu@gmail.com>2019-03-21 10:56:49 +0200
committerdecebals <decebal.suiu@gmail.com>2019-03-21 10:56:49 +0200
commit3ffde097b376cfd5f4ce0c9ae4bc44732c0c4d08 (patch)
tree3467822c357046d8a67f68c88a697113df47c989 /pf4j
parentf38605432b9ad9d91dbb479dcf08a5f53f0fc285 (diff)
downloadpf4j-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.java2
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 {