HBASE-20484 Remove the unnecessary autoboxing in FilterListBase
Signed-off-by: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
101055e343
commit
3fc2c3bf34
|
@ -56,8 +56,8 @@ public abstract class FilterListBase extends FilterBase {
|
||||||
if (rowFilters.isEmpty()) {
|
if (rowFilters.isEmpty()) {
|
||||||
return defaultValue;
|
return defaultValue;
|
||||||
}
|
}
|
||||||
Boolean retValue = rowFilters.get(0).isReversed();
|
boolean retValue = rowFilters.get(0).isReversed();
|
||||||
boolean allEqual = rowFilters.stream().map(Filter::isReversed).allMatch(retValue::equals);
|
boolean allEqual = rowFilters.stream().allMatch(f -> f.isReversed() == retValue);
|
||||||
if (!allEqual) {
|
if (!allEqual) {
|
||||||
throw new IllegalArgumentException("Filters in the list must have the same reversed flag");
|
throw new IllegalArgumentException("Filters in the list must have the same reversed flag");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue