Hi!
I was wondering if there is an easy way to fix the indentation after annotations in java files. As per now, it indents the next line. I have been looking through the customization code, but I am at a bit of a loss of what to do. Could anyone help me out?
Right now it looks like this.
| @Override
public void method() {
}
|
I would like it to look like this.
| @Override
public void method() {
}
|