Reputation: 7393
Say I have the following lines:
foo();
bar();
int main() {
}
Intellij reformats it so that it becomes:
foo();
bar();
...
How do I make it so that it does not add the annoying whitespace between foo()
and bar()
?
Upvotes: 0
Views: 20
Reputation: 402433
For Java it can be configured in File | Settings | Editor | Code Style | Java, Blank Lines, Around method:
Upvotes: 1