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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentMap.java (file contents):
Revision 1.48 by jsr166, Sat Dec 7 16:57:09 2013 UTC vs.
Revision 1.49 by jsr166, Sat Dec 7 17:10:57 2013 UTC

# Line 72 | Line 72 | public interface ConcurrentMap<K,V> exte
72       * @implSpec The default implementation is equivalent to, for this
73       * {@code map}:
74       * <pre> {@code
75 <     * for ((Map.Entry<K,V> entry : map.entrySet())
75 >     * for (Map.Entry<K,V> entry : map.entrySet())
76       *   action.accept(entry.getKey(), entry.getValue());
77       * }</pre>
78       *
# Line 231 | Line 231 | public interface ConcurrentMap<K,V> exte
231       * @implSpec
232       * <p>The default implementation is equivalent to, for this {@code map}:
233       * <pre> {@code
234 <     * for ((Map.Entry<K,V> entry : map.entrySet())
234 >     * for (Map.Entry<K,V> entry : map.entrySet())
235       *     do {
236       *        K k = entry.getKey();
237       *        V v = entry.getValue();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines