name for Switcher action
[fedora-idea.git] / testData / refactoring / inlineParameter / RefMethod.java
blob6fdedff3f1f83642d4282c479b1bc100c2444992
1 public class A {
2 void test(String <caret>s) {
3 System.out.println(s);
6 void callTest() {
7 test(myMethod());
10 String myMethod() {
11 return "";