Skip to content

Commit

Permalink
Removed TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaeschke committed Nov 19, 2023
1 parent 0414c71 commit d248a5f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/org/tinspin/index/qthypercube2/QNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,6 @@ PointEntry<T> getExact(double[] key, Predicate<PointEntry<T>> pred) {
int pos = calcSubPosition(key);
Object sub = subs[pos];
if (sub instanceof QNode) {
if (values != null) {
throw new IllegalStateException(); // TODO
}
return ((QNode<T>)sub).getExact(key, pred);
} else if (sub != null) {
PointEntry<T> e = (PointEntry<T>) sub;
Expand Down

0 comments on commit d248a5f

Please sign in to comment.