Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ public MultipleObjectsBundle loadData() {
}
System.gc();
if(labelfile == null) {
return result;
return invokeBundleFilters(result);
}
path = Paths.get(labelfile);
try (FileChannel channel = FileChannel.open(path)) {
Expand All @@ -691,7 +691,7 @@ public MultipleObjectsBundle loadData() {
catch(IOException e) {
throw new AbortException("IO error loading numpy file", e);
}
return result;
return invokeBundleFilters(result);
}

@Override
Expand Down
Loading