src/share/classes/java/util/function/ToIntFunction.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 arguments
      *
      * @param t the input object
      * @return the function result value
      */
-    public int applyAsInt(T t);
+    int applyAsInt(T t);
 }