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.230 by jsr166, Wed Jun 19 17:11:57 2013 UTC vs.
Revision 1.231 by dl, Wed Jun 26 10:55:31 2013 UTC

# Line 3573 | Line 3573 | public class ConcurrentHashMap<K,V> impl
3573       * of all (key, value) pairs
3574       * @since 1.8
3575       */
3576 <    public double reduceToDoubleIn(long parallelismThreshold,
3577 <                                   ToDoubleBiFunction<? super K, ? super V> transformer,
3578 <                                   double basis,
3579 <                                   DoubleBinaryOperator reducer) {
3576 >    public double reduceToDouble(long parallelismThreshold,
3577 >                                 ToDoubleBiFunction<? super K, ? super V> transformer,
3578 >                                 double basis,
3579 >                                 DoubleBinaryOperator reducer) {
3580          if (transformer == null || reducer == null)
3581              throw new NullPointerException();
3582          return new MapReduceMappingsToDoubleTask<K,V>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines