name for Switcher action
[fedora-idea.git] / testData / refactoring / inlineParameter / RefLocalWithLocal.java.after
blob20d193af44d9cbcd8809911fc3bac2c165889a29
1 public class A {
2     void test(String s1) {
3         System.out.println(s1);
4         System.out.println(s1);
5     }
7     void callTest() {
8         String s = "";
9         test(s);
10     }