@@ -498,7 +498,7 @@ public HashMap(Map<? extends K, ? extends V> m) {
498498 * @param evict false when initially constructing this map, else
499499 * true (relayed to method afterNodeInsertion).
500500 */
501- final void putMapEntries (Map <? extends K , ? extends V > m , boolean evict ) {
501+ void putMapEntries (Map <? extends K , ? extends V > m , boolean evict ) {
502502 int s = m .size ();
503503 if (s > 0 ) {
504504 if (table == null ) { // pre-size
@@ -623,7 +623,7 @@ public V put(K key, V value) {
623623 * @param evict if false, the table is in creation mode.
624624 * @return previous value, or null if none
625625 */
626- final V putVal (int hash , K key , V value , boolean onlyIfAbsent ,
626+ V putVal (int hash , K key , V value , boolean onlyIfAbsent ,
627627 boolean evict ) {
628628 Node <K ,V >[] tab ; Node <K ,V > p ; int n , i ;
629629 if ((tab = table ) == null || (n = tab .length ) == 0 )
@@ -1437,7 +1437,7 @@ final Node<K,V> nextNode() {
14371437 return e ;
14381438 }
14391439
1440- public final void remove () {
1440+ public void remove () {
14411441 Node <K ,V > p = current ;
14421442 if (p == null )
14431443 throw new IllegalStateException ();
0 commit comments