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

Comparing jsr166/src/jsr166x/ConcurrentSkipListMap.java (file contents):
Revision 1.20 by jsr166, Sat Dec 29 23:55:19 2012 UTC vs.
Revision 1.21 by jsr166, Sun Dec 30 02:05:53 2012 UTC

# Line 1196 | Line 1196 | public class ConcurrentSkipListMap<K,V>
1196      }
1197  
1198      /**
1199 <     * Version of remove with boolean return. Needed by view classes
1199 >     * Version of remove with boolean return. Needed by view classes.
1200       */
1201      boolean removep(Object key) {
1202          return doRemove(key, null) != null;
# Line 3095 | Line 3095 | public class ConcurrentSkipListMap<K,V>
3095          }
3096  
3097          /**
3098 <         * Returns underlying map. Needed by ConcurrentSkipListSet
3098 >         * Returns underlying map. Needed by ConcurrentSkipListSet.
3099           * @return the backing map
3100           */
3101          ConcurrentSkipListMap<K,V> getMap() {
# Line 3103 | Line 3103 | public class ConcurrentSkipListMap<K,V>
3103          }
3104  
3105          /**
3106 <         * Returns least key. Needed by ConcurrentSkipListSet
3106 >         * Returns least key. Needed by ConcurrentSkipListSet.
3107           * @return least key or <tt>null</tt> if from start
3108           */
3109          K getLeast() {
# Line 3111 | Line 3111 | public class ConcurrentSkipListMap<K,V>
3111          }
3112  
3113          /**
3114 <         * Returns fence key. Needed by ConcurrentSkipListSet
3114 >         * Returns fence key. Needed by ConcurrentSkipListSet.
3115           * @return fence key or <tt>null</tt> of to end
3116           */
3117          K getFence() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines