Skip to content

Commit d7b0954

Browse files
committed
removed unnecessary comments
1 parent 4bc66e4 commit d7b0954

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletMetadata.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -606,10 +606,9 @@ private static boolean isFileRangeValid(StoredTabletFile file, Key prevEndRowKey
606606

607607
if (prevEndRowKey != null
608608
&& fileStartKey.compareTo(prevEndRowKey.followingKey(PartialKey.ROW)) < 0) {
609-
return false; // File starts before the valid range
609+
return false;
610610
}
611-
return endRowKey == null || fileEndKey.compareTo(endRowKey) <= 0; // File extends beyond the
612-
// tablet's end row
611+
return endRowKey == null || fileEndKey.compareTo(endRowKey) <= 0;
613612
}
614613

615614
static class Builder {

0 commit comments

Comments
 (0)