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.64 by jsr166, Mon May 2 18:38:53 2005 UTC vs.
Revision 1.65 by jsr166, Mon May 2 19:01:41 2005 UTC

# Line 1071 | Line 1071 | public class ConcurrentHashMap<K, V> ext
1071       */
1072      public Set<Map.Entry<K,V>> entrySet() {
1073          Set<Map.Entry<K,V>> es = entrySet;
1074 <        return (es != null) ? es : (entrySet = (Set<Map.Entry<K,V>>) (Set) new EntrySet());
1074 >        return (es != null) ? es : (entrySet = new EntrySet());
1075      }
1076  
1077  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines