Example

public class ClassA {
char variable1;
int Variable1;

}
Solution
In the example there two fields only diiffer by the case of 'v'.This should be avoided

public class ClassA {
char variable1;
int Variable2;

}