public void delete()

in src/main/java/com/netflix/bdp/s3mper/metastore/impl/InMemoryMetastore.java [75:85]


    public void delete(final Path path) throws Exception {
        synchronized (this) {
            List<FileInfo> list = get(path.getParent());
            for (Iterator<FileInfo> it = list.iterator(); it.hasNext();) {
                FileInfo fi = it.next();
                if (fi.getPath().equals(path)) {
                    it.remove();
                }
            }
        }
    }