How to stop reformatting of intelliJ after save

287 Views Asked by At

This is a simple question that I can't find an answer. I'm using IntelliJ for Java practice.

I have blocks of code that are just a single line, followed by an end brace, like this,

public void example(){
    System.out.println("Some string");
}

Edit: After saving and closing the app, then reopen the project, IntelliJ reformats this as

public void example(){ System.out.println("Some string"); }

How do I stop IntelliJ from doing this? It becomes a hassle when I need to add more things into the block, I need to click it to expand the block. Thank you!

2

There are 2 best solutions below

0
On BEST ANSWER

It is not reformat, it is a folding feature. Please disable the Settings (Preferences on macOS) | Editor | General | Code Folding | One-line methods option.

1
On

Since this is not IntelliJ's standard behaviour, I assume you might have Save Actions plugin installed.

If this is the case, check its options (Settings -> Save Actions -> Formatting actions).