mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
10 lines
203 B
Java
10 lines
203 B
Java
// "Replace lambda expression with 'Pattern.negate()'" "false"
|
|
import java.util.function.Predicate;
|
|
|
|
public class Main {
|
|
Predicate<Predicate<Object>> test() {
|
|
return p -> !<caret>p.test(p);
|
|
}
|
|
}
|
|
|