Skip to content

Commit 4810d22

Browse files
committed
remove dent
1 parent 97a3cdc commit 4810d22

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/provider/foundationdb/KeyValueCursorBase.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,7 @@ public T setHigh(@Nonnull byte[] highBytes, @Nonnull EndpointType highEndpoint)
341341
*/
342342
protected int calculatePrefixLength() {
343343
int prefixLength = subspace.pack().length;
344-
while ((prefixLength < lowBytes.length) &&
345-
(prefixLength < highBytes.length) &&
346-
(lowBytes[prefixLength] == highBytes[prefixLength])) {
344+
while ((prefixLength < lowBytes.length) && (prefixLength < highBytes.length) && (lowBytes[prefixLength] == highBytes[prefixLength])) {
347345
prefixLength++;
348346
}
349347
return prefixLength;

0 commit comments

Comments
 (0)