Hi,
Here is a statement:
String s = "aa...aa";
If the value is long enough to exceed the line length, the autoformatting turns it into:
String
s =
"aa...aa";
I would expect
String s =
"aa...aa";
Is there a setting in IntelliJ to make the formatting work the way I want?
Thanks!
Alex