Explorar el Código

Fix the compilation error introduced by the previous commit

tags/release-3.0.0
decebals hace 5 años
padre
commit
3ffde097b3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      pf4j/src/main/java/org/pf4j/util/FileUtils.java

+ 1
- 1
pf4j/src/main/java/org/pf4j/util/FileUtils.java Ver fichero

@@ -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 {

Cargando…
Cancelar
Guardar