Remove redundant modifier

This commit is contained in:
Simon Willnauer 2016-07-05 08:39:08 +02:00
parent 44ccf67e33
commit cbbc8790a5
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public final class CompositeBytesReference extends BytesReference {
return new CompositeBytesReference(inSlice);
}
private final int getOffsetIndex(int offset) {
private int getOffsetIndex(int offset) {
final int i = Arrays.binarySearch(offsets, offset);
return i < 0 ? (-(i + 1)) - 1 : i;
}