In my 15 year old java project, standard Java conventions are not respected, and the first letter of variable names is often capitalized.
I would like to reorganize my project into the first letters of the variables in lower case, especially in method signatures:
public void creerProfil(String CodeProfil, Profil ProfilACreer) throws Exception {
...
}
it should be:
public void creerProfil(String CodeProfil, Profil ProfilACreer) throws Exception {
...
}
If you have any idea about a plugin that could do this, I would be happy to hear that :)
source
share