ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.90 by jsr166, Wed Jun 7 23:54:23 2006 UTC vs.
Revision 1.91 by jsr166, Thu Jun 22 05:23:32 2006 UTC

# Line 775 | Line 775 | public class ConcurrentHashMap<K, V> ext
775       * @throws NullPointerException if the specified key is null
776       */
777      public boolean containsKey(Object key) {
778 <        int hash = hash(key.hashCode());
778 >        int hash = hash(key.hashCode());
779          return segmentFor(hash).containsKey(key, hash);
780      }
781  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines