mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Added SurroundResult#collapse method to collapse expanded code block back. Now, InlineMethodProcessor is simpler and preserves semantics at the call site more often. Fixes IDEA-297364 Inline Method changes semantic for a method throwing exception GitOrigin-RevId: 2ceb23e372e2876202dac687048ac86fb23cfc3b
13 lines
192 B
Plaintext
13 lines
192 B
Plaintext
|
|
class Foo {
|
|
|
|
public static final Bar[] bars = new Bar[] {new Bar("a", 0, "A", "B", "C"), new Bar("b", 1, "A", "B")};
|
|
}
|
|
|
|
|
|
class Bar {
|
|
|
|
public Bar(String a, int nr, String... args) {
|
|
}
|
|
|
|
} |