diff --git a/java/core/src/main/java/com/google/protobuf/SmallSortedMap.java b/java/core/src/main/java/com/google/protobuf/SmallSortedMap.java index 55934d2187..495417dd0d 100644 --- a/java/core/src/main/java/com/google/protobuf/SmallSortedMap.java +++ b/java/core/src/main/java/com/google/protobuf/SmallSortedMap.java @@ -172,12 +172,6 @@ class SmallSortedMap, V> extends AbstractMap { : overflowEntries.entrySet(); } - Iterable> getOverflowEntriesDescending() { - return overflowEntriesDescending.isEmpty() - ? Collections.emptySet() - : overflowEntriesDescending.entrySet(); - } - @Override public int size() { return entryList.size() + overflowEntries.size();