I got ownership of a code base that, although very well written, uses a rather strange convention:
public void someMethod(String pName, Integer pAge, Context pContext)
{
...
}
I would like to make the following two changes to the whole code:
public void someMethod(String name, Integer age, Context context) { ... }
- Opening a parenthesis in the same line of a method declaration
- Use the name camelCase for all method parameters without this weird prefix "p"
Can anyone help me here? I am looking, but I cannot find a way to rename all parameters in all method signatures to something more pleasant.
source
share