name for Switcher action
[fedora-idea.git] / testData / refactoring / inlineParameter / RefIdentical.java
blobe05e2e947f2a830c849ea7ea4b57782fb1d9785f
1 public class A {
2 void test(String s1, String <caret>s2) {
3 System.out.println(s1);
4 System.out.println(s2);
7 void callTest() {
8 String s = "";
9 test(s, s);