change signature from usage: try new description (IDEA-50193)

This commit is contained in:
anna
2011-07-26 10:55:37 +04:00
parent d8613c2ee1
commit 5b3aff7eec
5 changed files with 84 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
// "Change signature of 'f(int, String)' to 'f(int, char, int, String, int, Object)'" "true"
// "<html> Change signature of f(int, <b>char</b>, <b>int</b>, String, <b>int</b>, <b>Object</b>)</html>" "true"
class A {
void f(int i, char c, int i1, String s, int i2, Object o) {}
public void foo() {

View File

@@ -1,4 +1,4 @@
// "Change signature of 'f(int, String, int, int, char, String)' to 'f(int, int, String)'" "true"
// "<html> Change signature of f(int, <s>String</s>, int, <s>int</s>, <s>char</s>, String)</html>" "true"
class A {
void f(int i, int i2, String s) {}
public void foo() {

View File

@@ -1,4 +1,4 @@
// "Change signature of 'f(int, String)' to 'f(int, char, int, String, int, Object)'" "true"
// "<html> Change signature of f(int, <b>char</b>, <b>int</b>, String, <b>int</b>, <b>Object</b>)</html>" "true"
class A {
void f(int i,String s) {}
public void foo() {

View File

@@ -1,4 +1,4 @@
// "Change signature of 'f(int, String, int, int, char, String)' to 'f(int, int, String)'" "true"
// "<html> Change signature of f(int, <s>String</s>, int, <s>int</s>, <s>char</s>, String)</html>" "true"
class A {
void f(int i, String s, int i2, int i3, char c, String s) {}
public void foo() {