I need to change the signature of a method used all over the codebase.
Specifically, the method void log(String) will take two additional arguments (
void log(String)
I would search and replace log( with log(@class, @methodname,
log(
log(@class, @methodname,
Then write a little script in any language (even java) to find the class name and the method names and to replace the @class and @method tokens...
Good luck