소스 검색

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…
취소
저장