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

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

@@ -41,7 +41,7 @@
      * Compute the result of applying the function to the input argument
      *
      * @param value the input value
      * @return the function result
      */
-    public R apply(double value);
+    R apply(double value);
 }