You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
google-java-format T.java
class T {
String foo =
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt"
+ " ut labore et dolore magna";
}
For example:
String foo = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna";
Does not get formatted with line break as
String foo =
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor"
+ " incididunt ut labore et dolore magna";
Shouldn't this be a feature given by the library?
This kind of formatting is supported by IDEs for example Idea IntelliJ
The text was updated successfully, but these errors were encountered: