Skip to content

Commit 6032ed4

Browse files
andiwgkno10
authored andcommitted
fix invokation of filters for numpy data connection
1 parent 56fffd2 commit 6032ed4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

elki-input/src/main/java/elki/datasource/NumpyDatabaseConnection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ public MultipleObjectsBundle loadData() {
679679
}
680680
System.gc();
681681
if(labelfile == null) {
682-
return result;
682+
return invokeBundleFilters(result);
683683
}
684684
path = Paths.get(labelfile);
685685
try (FileChannel channel = FileChannel.open(path)) {
@@ -691,7 +691,7 @@ public MultipleObjectsBundle loadData() {
691691
catch(IOException e) {
692692
throw new AbortException("IO error loading numpy file", e);
693693
}
694-
return result;
694+
return invokeBundleFilters(result);
695695
}
696696

697697
@Override

0 commit comments

Comments
 (0)