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.155 by dl, Thu Dec 27 20:47:47 2012 UTC vs.
Revision 1.156 by dl, Fri Dec 28 14:03:58 2012 UTC

# Line 5905 | Line 5905 | public class ConcurrentHashMap<K, V>
5905                       (map, this, b, rights, reducer)).fork();
5906                  V r = null, v;
5907                  while ((v = advance()) != null)
5908 <                    r = (r == null) ? v : v == null ? r : reducer.apply(r, v);
5908 >                    r = (r == null) ? v : reducer.apply(r, v);
5909                  result = r;
5910                  CountedCompleter<?> c;
5911                  for (c = firstComplete(); c != null; c = c.nextComplete()) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines