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.152 by jsr166, Thu Sep 3 22:54:46 2015 UTC vs.
Revision 1.153 by jsr166, Sun Sep 20 16:20:21 2015 UTC

# Line 330 | Line 330 | public class ConcurrentSkipListMap<K,V>
330      /**
331       * Special value used to identify base-level header
332       */
333 <    private static final Object BASE_HEADER = new Object();
333 >    static final Object BASE_HEADER = new Object();
334  
335      /**
336       * The topmost head index of the skiplist.
# Line 2539 | Line 2539 | public class ConcurrentSkipListMap<K,V>
2539          private static final long serialVersionUID = -7647078645895051609L;
2540  
2541          /** Underlying map */
2542 <        private final ConcurrentSkipListMap<K,V> m;
2542 >        final ConcurrentSkipListMap<K,V> m;
2543          /** lower bound key, or null if from start */
2544          private final K lo;
2545          /** upper bound key, or null if to end */
# Line 2549 | Line 2549 | public class ConcurrentSkipListMap<K,V>
2549          /** inclusion flag for hi */
2550          private final boolean hiInclusive;
2551          /** direction */
2552 <        private final boolean isDescending;
2552 >        final boolean isDescending;
2553  
2554          // Lazily initialized view holders
2555          private transient KeySet<K,V> keySetView;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines