/* * Copyright (C) 2012-2014 Typesafe Inc. */ package scala.compat.java8; import scala.runtime.BoxedUnit; @FunctionalInterface public interface JProcedure1 extends JFunction1 { default void $init$() { } void applyVoid(T1 t1); default BoxedUnit apply(T1 t1) { applyVoid(t1); return BoxedUnit.UNIT; } }