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