I've noticed that when I inline implement an interface in the class body itself, ie. not inside a method,
Runnable r = new Runnable() {
@Override
public void run() {
// do something
}
};
and then press CTRL + SHIFT + F (automatically fixes indentation), eclipse indents the methods alot like:
Runnable r = new Runnable() {
@Override
public void run() {
// do something
}
};
Anyone else encountered this?
Uncheck the "Align fields in columns" from the first tab of the Formatter
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With