Skip to content

Commit

Permalink
Delete unused method SmallSortedSet.getOverflowEntriesDescending
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 636034500
  • Loading branch information
mhansen authored and copybara-github committed May 22, 2024
1 parent 3ba7280 commit c05be32
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,6 @@ public Iterable<Map.Entry<K, V>> getOverflowEntries() {
: overflowEntries.entrySet();
}

Iterable<Map.Entry<K, V>> getOverflowEntriesDescending() {
return overflowEntriesDescending.isEmpty()
? Collections.emptySet()
: overflowEntriesDescending.entrySet();
}

@Override
public int size() {
return entryList.size() + overflowEntries.size();
Expand Down

0 comments on commit c05be32

Please sign in to comment.