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.124 by dl, Sun Jun 16 14:48:11 2013 UTC vs.
Revision 1.125 by jsr166, Wed Jun 19 17:05:02 2013 UTC

# Line 3112 | Line 3112 | public class ConcurrentSkipListMap<K,V>
3112              private void descend() {
3113                  Comparator<? super K> cmp = m.comparator;
3114                  for (;;) {
3115 <                    next =  m.findNear(lastReturned.key, LT, cmp);
3115 >                    next = m.findNear(lastReturned.key, LT, cmp);
3116                      if (next == null)
3117                          break;
3118                      Object x = next.value;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines