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