IDEADEV-25972
[fedora-idea.git] / testData / refactoring / inlineLocal / IDEADEV13151.java.after
blob4cbf4b67339d4614ab6a32089f09789d4130d3a0
1 class Tester {
2     void method(String x, String... y) {
3     }
5     void method1(String x, String[] y) {
6     }
8     void caller() {
9         method("", "a", "b");
10         method1("", new String[]{"a", "b"});
11     }