src/share/classes/java/util/function/LongFunction.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(long value);
+    R apply(long value);
 }