mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
26 lines
542 B
Java
26 lines
542 B
Java
// "Unwrap 'if' statement extracting side effects" "true-preview"
|
|
class Test {
|
|
void foo(Object obj) {
|
|
if (!(obj instanceof Rect)) {
|
|
return;
|
|
}
|
|
Rect rect = (Rect) obj;
|
|
Point pos = rect.pos();
|
|
Size size = rect.size();
|
|
System.out.println(rect);
|
|
System.out.println(rect.size());
|
|
System.out.println(pos);
|
|
System.out.println(pos.x());
|
|
System.out.println(size.h());
|
|
}
|
|
}
|
|
|
|
record Point(double x, double y) {
|
|
}
|
|
|
|
record Size(double w, double h) {
|
|
}
|
|
|
|
record Rect(Point pos, Size size) {
|
|
}
|