Remove redundant modifier
This commit is contained in:
parent
44ccf67e33
commit
cbbc8790a5
|
@ -96,7 +96,7 @@ public final class CompositeBytesReference extends BytesReference {
|
||||||
return new CompositeBytesReference(inSlice);
|
return new CompositeBytesReference(inSlice);
|
||||||
}
|
}
|
||||||
|
|
||||||
private final int getOffsetIndex(int offset) {
|
private int getOffsetIndex(int offset) {
|
||||||
final int i = Arrays.binarySearch(offsets, offset);
|
final int i = Arrays.binarySearch(offsets, offset);
|
||||||
return i < 0 ? (-(i + 1)) - 1 : i;
|
return i < 0 ? (-(i + 1)) - 1 : i;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue