Skip to content

Commit 0d2d050

Browse files
committed
revert format change
1 parent 2948826 commit 0d2d050

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,9 @@ 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) && (prefixLength < highBytes.length) && (lowBytes[prefixLength] == highBytes[prefixLength])) {
344+
while ((prefixLength < lowBytes.length) &&
345+
(prefixLength < highBytes.length) &&
346+
(lowBytes[prefixLength] == highBytes[prefixLength])) {
345347
prefixLength++;
346348
}
347349
return prefixLength;

0 commit comments

Comments
 (0)