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.44 by dl, Tue Jun 18 09:13:42 2013 UTC vs.
Revision 1.45 by jsr166, Tue Jun 18 17:46:16 2013 UTC

# Line 167 | Line 167 | public interface ConcurrentMap<K,V> exte
167      @Override
168      default void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
169          if (function == null) throw new NullPointerException();
170 <        for (Map.Entry<K, V> entry : entrySet()) {
170 >        for (Map.Entry<K,V> entry : entrySet()) {
171              K k; V v;
172              try {
173                  k = entry.getKey();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines