jojochuang commented on code in PR #9240: URL: https://github.com/apache/ozone/pull/9240#discussion_r2520330293
########## hadoop-hdds/framework/src/test/java/org/apache/hadoop/hdds/utils/MapBackedTableIterator.java: ########## @@ -29,9 +29,9 @@ public class MapBackedTableIterator<V> implements Table.KeyValueIterator<String, private Iterator<Table.KeyValue<String, V>> itr; private final String prefix; - private final TreeMap<String, V> values; + private final NavigableMap<String, V> values; Review Comment: use the abstract parent class. Nice to have but not required in this PR. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
