maedhroz commented on code in PR #3926: URL: https://github.com/apache/cassandra/pull/3926#discussion_r1972495116
########## src/java/org/apache/cassandra/utils/btree/AbstractBTreeMap.java: ########## @@ -18,13 +18,15 @@ package org.apache.cassandra.utils.btree; +import java.util.AbstractCollection; import java.util.AbstractMap; +import java.util.Collection; import java.util.Comparator; import java.util.Iterator; import java.util.Map; import java.util.Set; -import com.google.common.collect.ImmutableSet; +import com.google.common.collect.Iterators; public abstract class AbstractBTreeMap<K, V> extends AbstractMap<K, V> Review Comment: nit: We might want to consider throwing `@NotThreadSafe` on this class...not that it was before. -- 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: pr-unsubscr...@cassandra.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For additional commands, e-mail: pr-h...@cassandra.apache.org