Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit d53d43e

Browse files
committed
format comment
1 parent 84b1f20 commit d53d43e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/RowSetUtil.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,7 @@ private static List<RowRange> splitOnLargeRowKey(RowRange range, ByteString larg
163163
ByteString endKey = EndPoint.extract(range).value;
164164

165165
// if end key is on the left of large row key, don't split. Empty endKey means it's unbounded
166-
// and it's always
167-
// on the right of the large key
166+
// so it's always on the right of the large key
168167
if (!endKey.isEmpty() && ByteStringComparator.INSTANCE.compare(endKey, largeRowKey) < 0) {
169168
rowRanges.add(range);
170169
return rowRanges;

0 commit comments

Comments
 (0)