Remove obsolete javadoc in SmallSortedMap: parameter arraySize has been deleted

PiperOrigin-RevId: 647796308
pull/17227/head
Mark Hansen 9 months ago committed by Copybara-Service
parent c1763b64c0
commit e08414ca10
  1. 4
      java/core/src/main/java/com/google/protobuf/SmallSortedMap.java

@ -111,10 +111,6 @@ class SmallSortedMap<K extends Comparable<K>, V> extends AbstractMap<K, V> {
private Map<K, V> overflowEntriesDescending;
private volatile DescendingEntrySet lazyDescendingEntrySet;
/**
* @code arraySize Size of the array in which the lexicographically smallest mappings are stored.
* (i.e. the {@code k} referred to in the class documentation).
*/
private SmallSortedMap() {
this.entryList = Collections.emptyList();
this.overflowEntries = Collections.emptyMap();

Loading…
Cancel
Save