cs: do not compare parameters length of caller and primary method's old parameter idx (IDEA-58352)

This commit is contained in:
anna
2010-10-28 11:50:36 +04:00
parent 79bb22d0fa
commit 4b89145451
4 changed files with 50 additions and 2 deletions
@@ -0,0 +1,9 @@
public class C {
void su<caret>bject(String s) {
}
void caller() {
int s;
subject(null);
}
}