Example
public class
ClassA
{
public void
method() {
char
variable1;
int
Variable1;
}
}
Solution
In the given example the two local variables inside 'method()' only differ by the case of 'v'. This should be avoided
public class
ClassA
{
public void
method() {
int
variable1;
char
Variable2;
}
}