Chroma-Chat/.metadata/.plugins/org.eclipse.core.resources/.history/83/a0b48585922b00151fa6e49f3e10bf0b
2015-07-16 13:51:59 +02:00

16 lines
224 B
Text

package tk.sznp.thebuttonautoflair;
import java.util.function.Predicate;
public class MyPredicate<T> implements Predicate<T>
{
public MyPredicate()
{
}
@Override
public boolean test(T arg0) {
return false;
}
}