Example
public class
ClassA {
public void
methodA (int i, String s) {
}
public void
methodA (String s, int i) {
}
}
Solution
Overloaded methods with the same number of parameters should be avoided. Try to introduce another parameter or a new method.