dlmarion commented on code in PR #5935:
URL: https://github.com/apache/accumulo/pull/5935#discussion_r2387869677
##########
core/src/main/java/org/apache/accumulo/core/metadata/schema/RootTabletMetadata.java:
##########
@@ -97,15 +97,6 @@ private Data(int version,
TreeMap<String,TreeMap<String,String>> columnValues) {
this.columnValues = columnValues;
}
- public int getVersion() {
- return version;
- }
-
- public static boolean needsUpgrade(final String json) {
- var rootData = GSON.get().fromJson(json, Data.class);
- int currVersion = rootData.getVersion();
- return currVersion < VERSION;
- }
Review Comment:
It looks like these methods were added in #3876 , and then the
Upgrader11to12 class was modified in #3988 and removed the code that was
calling these methods.
--
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]