mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
Fixes IDEA-361852 Java Inline Method refactor introduces intermediate variables (cherry picked from commit 680fbb62f3440b7ae29f4de1793260fe5be0ab36) IJ-CR-149087 GitOrigin-RevId: c9ede4356696412b656b0295f21f534cce04bc30
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();
|
|
}
|
|
} |