Delete unused method SmallSortedSet.getOverflowEntriesDescending

PiperOrigin-RevId: 636034500
pull/16909/head
Mark Hansen 6 months ago committed by Copybara-Service
parent 3ba72807a6
commit c05be324da
  1. 6
      java/core/src/main/java/com/google/protobuf/SmallSortedMap.java

@ -172,12 +172,6 @@ class SmallSortedMap<K extends Comparable<K>, V> extends AbstractMap<K, V> {
: overflowEntries.entrySet();
}
Iterable<Map.Entry<K, V>> getOverflowEntriesDescending() {
return overflowEntriesDescending.isEmpty()
? Collections.emptySet()
: overflowEntriesDescending.entrySet();
}
@Override
public int size() {
return entryList.size() + overflowEntries.size();

Loading…
Cancel
Save