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.272 by dl, Wed Apr 29 10:42:15 2015 UTC vs.
Revision 1.273 by jsr166, Wed Apr 29 18:01:41 2015 UTC

# Line 1596 | Line 1596 | public class ConcurrentHashMap<K,V> exte
1596      /**
1597       * Helper method for EntrySet.removeIf
1598       */
1599 <    boolean removeEntryIf(Predicate<? super Entry<K, V>> function) {
1599 >    boolean removeEntryIf(Predicate<? super Entry<K,V>> function) {
1600          if (function == null) throw new NullPointerException();
1601          Node<K,V>[] t;
1602          boolean removed = false;
# Line 4783 | Line 4783 | public class ConcurrentHashMap<K,V> exte
4783              return added;
4784          }
4785  
4786 <        public boolean removeIf(Predicate<? super Entry<K, V>> filter) {
4786 >        public boolean removeIf(Predicate<? super Entry<K,V>> filter) {
4787              return map.removeEntryIf(filter);
4788          }
4789  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines