/* * Copyright (C) 2012-2014 Typesafe Inc. */ package scala.compat.java8; @FunctionalInterface public interface JFunction2$mcVII$sp extends JFunction2 { abstract void apply$mcVII$sp(int v1, int v2); default Object apply(Object v1, Object v2) { apply$mcVII$sp((Integer) v1, (Integer) v2); return scala.runtime.BoxedUnit.UNIT; } }