public void delete()

in src/main/java/org/apache/sling/commons/jcr/file/internal/JcrFileSystemProvider.java [190:198]


    public void delete(Path path) throws IOException {
        logger.info("delete: {}", path);
        final File file = path.toFile();
        if (!file.exists()) {
            throw new NoSuchFileException(path.toString());
        } else {
            // TODO delete
        }
    }