瀏覽代碼

Fix the compilation error introduced by the previous commit

tags/release-3.0.0
decebals 5 年之前
父節點
當前提交
3ffde097b3
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      pf4j/src/main/java/org/pf4j/util/FileUtils.java

+ 1
- 1
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…
取消
儲存