Example
public class
ClassA
{
public void
method(
int
Variable1,
char
variable1) {
}
}
Solution
In the given example the parameters of 'method()' only differ by the case of 'v'. This should be avoided
public class
ClassA
{
public void
method(
int
Variable1,
char
variable2) {
}
}