I'm running Eclipse 3.7.2 on Windows 7 professional.
If I type a method declaration like this:
private void processCode(String codename,
boolean doSomethingElse,
int num_of_repeats){
}
Then hit Ctrl + I with the whole file selected, Eclipse will mess up the alignment of the function arguments like this
private void processCode(String codename,
boolean doSomethingElse,
int num_of_repeats){
}
How can I get Eclipse to stop doing that?