IDEA-50588 Don't suggest getX when completing setX() parameter (disprefer, actually)

This commit is contained in:
peter
2012-03-06 20:30:18 +04:00
parent 57f534cc43
commit c89084affd
5 changed files with 96 additions and 11 deletions
@@ -0,0 +1,13 @@
public class Aaaaaaa {
int color;
void setColor(int color) {}
int getColor() {}
int getZooColor() {}
{
setColor(<caret>);
}
}
@@ -0,0 +1,13 @@
public class Aaaaaaa {
int color;
void setColor(int color) {}
int getColor() {}
int getZooColor() {}
void foo(Aaaaaaa a) {
setColor(a.<caret>);
}
}