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