mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 23:07:01 +07:00
Fixes IDEA-361852 Java Inline Method refactor introduces intermediate variables GitOrigin-RevId: 680fbb62f3440b7ae29f4de1793260fe5be0ab36
11 lines
181 B
Plaintext
11 lines
181 B
Plaintext
public class Foo {
|
|
|
|
public Foo hi() {
|
|
System.out.println("hi");
|
|
return this;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new Foo().hi().hi().hi().hi();
|
|
}
|
|
} |