If I rename a variable to the same name of a field, there is no warning that conflicts might ocurr.
For example, renaming newValue to num in:
class myClass {
int num;
void setNum (int newValue) {
num=newValue;
}
}
would lead up to a line like this:
num = num;
should be:
this.num = num;
or there should be some warning.
_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list
