ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.276 by jsr166, Sat Sep 12 19:25:31 2015 UTC vs.
Revision 1.277 by jsr166, Sat Sep 12 20:05:25 2015 UTC

# Line 1594 | Line 1594 | public class ConcurrentHashMap<K,V> exte
1594      }
1595  
1596      /**
1597 <     * Helper method for EntrySet.removeIf
1597 >     * Helper method for EntrySetView.removeIf
1598       */
1599      boolean removeEntryIf(Predicate<? super Entry<K,V>> function) {
1600          if (function == null) throw new NullPointerException();
# Line 1614 | Line 1614 | public class ConcurrentHashMap<K,V> exte
1614      }
1615  
1616      /**
1617 <     * Helper method for Values.removeIf
1617 >     * Helper method for ValuesView.removeIf
1618       */
1619      boolean removeValueIf(Predicate<? super V> function) {
1620          if (function == null) throw new NullPointerException();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines