dlmarion commented on code in PR #5935:
URL: https://github.com/apache/accumulo/pull/5935#discussion_r2387899212


##########
core/src/main/java/org/apache/accumulo/core/metadata/schema/MetadataSchema.java:
##########
@@ -482,22 +482,6 @@ public static class Upgrade11to12 {
     }
   }
 
-  /**
-   * Contains additional metadata in a reserved area not for tablets
-   */
-  public static class ReservedSection {
-    private static final Section section = new Section(RESERVED_PREFIX, true, 
null, false);
-
-    public static Range getRange() {
-      return section.getRange();
-    }
-
-    public static String getRowPrefix() {
-      return section.getRowPrefix();
-    }
-
-  }
-

Review Comment:
   Reverted changes to this class in 700ec8c



##########
core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java:
##########
@@ -398,13 +391,6 @@ protected void advanceToIntersection() throws IOException {
     topKey = buildKey(currentPartition, nullText, currentDocID);
   }
 
-  public static String stringTopKey(SortedKeyValueIterator<Key,Value> iter) {
-    if (iter.hasTop()) {
-      return iter.getTopKey().toString();
-    }
-    return "";
-  }
-

Review Comment:
   Reverted changes to this class in 700ec8c



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to