Fixed - RediSearch NumericFilter throws NPE #5011

pull/5038/head
Nikita Koksharov 2 years ago
parent 32511e67c3
commit b6a4fa33ed

@ -35,27 +35,27 @@ public final class NumericFilterParams implements NumericFilter, NumericFilterMa
@Override
public NumericFilterMax min(double value) {
this.min = value;
return null;
return this;
}
@Override
public NumericFilterMax minExclusive(double value) {
this.min = value;
minExclusive = true;
return null;
return this;
}
@Override
public QueryFilter max(double value) {
this.max = value;
return null;
return this;
}
@Override
public QueryFilter maxExclusive(double value) {
this.max = value;
maxExclusive = true;
return null;
return this;
}
public String getFieldName() {

Loading…
Cancel
Save