Chroma-Chat/.metadata/.plugins/org.eclipse.core.resources/.history/9d/1061e789922b00151fa6e49f3e10bf0b
2015-07-16 13:51:59 +02:00

16 lines
231 B
Text

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