mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
26 lines
582 B
Java
26 lines
582 B
Java
// "Replace Stream API chain with loop" "true-preview"
|
|
|
|
import java.util.Arrays;
|
|
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);
|
|
boolean b = false;
|
|
for (String s : Arrays.asList("a", "b", "c")) {
|
|
if (s != null) {
|
|
b = true;
|
|
break;
|
|
}
|
|
}
|
|
super.test(b);
|
|
}
|
|
}
|
|
} |