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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java (file contents):
Revision 1.144 by dl, Wed Apr 29 10:42:15 2015 UTC vs.
Revision 1.145 by jsr166, Wed Apr 29 18:01:41 2015 UTC

# Line 3241 | Line 3241 | public class ConcurrentSkipListMap<K,V>
3241      /**
3242       * Helper method for EntrySet.removeIf
3243       */
3244 <    boolean removeEntryIf(Predicate<? super Entry<K, V>> function) {
3244 >    boolean removeEntryIf(Predicate<? super Entry<K,V>> function) {
3245          if (function == null) throw new NullPointerException();
3246          boolean removed = false;
3247          for (Node<K,V> n = findFirst(); n != null; n = n.next) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines