aboutsummaryrefslogtreecommitdiff
path: root/library/src/scala/compat/java8/JFunction2$mcVDI$sp.java
blob: 75b17c32635f1f6643968cafe3b812f22763f067 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (C) 2012-2014 Typesafe Inc. <http://www.typesafe.com>
 */

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; }
}