Example | |
|
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; } } |