Skip to content

Commit

Permalink
fixing a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoMoussallem committed Apr 4, 2017
1 parent 1e09cb8 commit 0c184ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/aksw/agdistis/util/TripleIndexContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ private List<Triple> getFromIndex(int maxNumberOfResults, BooleanQuery bq) throw

if (triples.size() < 500) {
return triples.subList(0, triples.size());
}
} else {
return triples.subList(0, 500);
// return triples;
}
}

public void close() throws IOException {
Expand Down

0 comments on commit 0c184ec

Please sign in to comment.