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

Print this page
rev 6137 : 8004015: Add Extends and deaults for basic functional interface types
Summary: Adds the appropriate extends and default methods for  core functional interfaces used by the JSR335 libraries.
Reviewed-by: duke

@@ -31,11 +31,16 @@
  * <p/>This is the primitive type specialization of {@link Block} for
  * {@code int} and also may be used as a {@code Block<Integer>}.
  *
  * @since 1.8
  */
-public interface IntBlock {
+public interface IntBlock extends Block<Integer> {
+
+    @Override
+    public default void accept(Integer t) {
+        accept((int) t);
+    }
 
     /**
      * Use the {@code int} input value in an operation which may modify external
      * state.
      *