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.10 by jsr166, Tue Apr 26 20:42:51 2005 UTC vs.
Revision 1.11 by jsr166, Tue Apr 26 21:14:31 2005 UTC

# Line 463 | Line 463 | public class ConcurrentSkipListMap<K,V>
463          }
464  
465          /**
466 <         * Return value if this node contains a valid key-value pair,
466 >         * Returns value if this node contains a valid key-value pair,
467           * else null.
468           * @return this node's value if it isn't a marker or header or
469           * is deleted, else null.
# Line 907 | Line 907 | public class ConcurrentSkipListMap<K,V>
907      }
908  
909      /**
910 <     * Creates and adds index nodes for given node.
910 >     * Creates and adds index nodes for the given node.
911       * @param z the node
912       * @param level the level of the index
913       */
# Line 1331 | Line 1331 | public class ConcurrentSkipListMap<K,V>
1331      }
1332  
1333      /**
1334 <     * Remove last entry; return key or null if empty.
1334 >     * Removes last entry; returns key or null if empty.
1335       */
1336      K pollLastKey() {
1337          return (K)doRemoveLast(true);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines