Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,6 @@ private void handleDirectory(FileObject[] children) throws FileSystemException {
*/
private void handleFile(FileObject file) throws FileSystemException {
String path = file.getName().getURI();
if (processed.contains(path)) {
return;
}
FileInfo info = new FileInfo(path);
info.setFileSize(file.getContent().getSize());
info.setLastModifiedTime(file.getContent().getLastModifiedTime());
Expand Down
Loading