src/share/classes/java/util/function/ToDoubleFunction.java

Print this page
rev 7047 : 8004015: Additional static and instance utils for functional interfaces.
Reviewed-by: briangoetz

@@ -40,7 +40,7 @@
      * Compute the result of applying the function to the input argument
      *
      * @param t the input object
      * @return the function result value
      */
-    public double applyAsDouble(T t);
+    double applyAsDouble(T t);
 }