Example

public class ClassA {
public void method(String s, int i, boolean b, Object o, String [] array, int number, boolean b2, String s2, Object o2) {
//..
}
}


Solution
Avoid methods with long signatures. Try to re-think the necessity of all the parameters being passed in and change the code accordingly.