I am maintaining an old code base. One of the classes has this method :
someMethod(Param1 a, Param2 b, Param3 c, Param4 d){...};
This method is widely used in many java classes. Like so :
foo.someMethod(valueA, null, valueC, null);
How can I find which java classes in my code base are using this method where the last parameter is not being passed in as null ?