Skip to content

Commit

Permalink
Fix FilterFloatVectorValues name
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHegarty committed Aug 28, 2024
1 parent b7bdba4 commit 919e906
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ private void checkAndThrowWithSampling() {
}
}

private static class ExitableFloatVectorValues extends FilterVectorValues {
private static class ExitableFloatVectorValues extends FilterFloatVectorValues {
private int calls;
private final QueryCancellation queryCancellation;

Expand Down Expand Up @@ -623,13 +623,13 @@ private void checkAndThrowWithSampling() {
}

/** Delegates all methods to a wrapped {@link FloatVectorValues}. */
private abstract static class FilterVectorValues extends FloatVectorValues {
private abstract static class FilterFloatVectorValues extends FloatVectorValues {

/** Wrapped values */
protected final FloatVectorValues in;

/** Sole constructor */
protected FilterVectorValues(FloatVectorValues in) {
protected FilterFloatVectorValues(FloatVectorValues in) {
Objects.requireNonNull(in);
this.in = in;
}
Expand Down

0 comments on commit 919e906

Please sign in to comment.