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.106 by dl, Wed Mar 13 12:39:02 2013 UTC vs.
Revision 1.107 by dl, Sat Mar 16 16:03:08 2013 UTC

# Line 3358 | Line 3358 | public class ConcurrentSkipListMap<K,V>
3358                  lastReturned = null;
3359              }
3360  
3361 +            public Spliterator<T> trySplit() {
3362 +                return null;
3363 +            }
3364 +
3365              public boolean tryAdvance(Consumer<? super T> action) {
3366                  if (hasNext()) {
3367                      action.accept(next());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines