org.lambda.query.Echo1 Maven / Gradle / Ivy
package org.lambda.query;
import com.spun.util.DeprecatedException;
import org.lambda.functions.Function1;
/**
* @deprecated use lambdas: {@literal a -> a }
*/
@Deprecated
public class Echo1 implements Function1
{
public T call(T i)
{
throw new DeprecatedException("a -> a");
}
}