mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
18 lines
427 B
Java
18 lines
427 B
Java
// "Replace Stream API chain with loop" "true-preview"
|
|
|
|
import java.util.stream.Stream;
|
|
import java.util.Objects;
|
|
|
|
public class Main {
|
|
Main(boolean b) {}
|
|
|
|
void test(boolean b) {}
|
|
|
|
static class Child extends Main {
|
|
// cannot replace as replacement would generate a statement before "super" call
|
|
Child() {
|
|
super(false);
|
|
super.test(Stream.of("a", "b", "c").an<caret>yMatch(Objects::nonNull));
|
|
}
|
|
}
|
|
} |