Line wrapping make first line shorter
Why are my lines wrapped like this :
ContractArticle contractArticle2 =
new ContractArticleBuilder(getTenantProvider(), PersistenceMode.PERSISTED).withDefaults().withContract(contract).withArticle(article)
.build();
And not like this :
ContractArticle contractArticle2 = new ContractArticleBuilder(getTenantProvider(), PersistenceMode.PERSISTED).withDefaults()
.withContract(contract).withArticle(article).build();
What setting should I change ?
Please sign in to leave a comment.
Probably because you have set "Wrap if long" or "Wrap always" in Settings|Editor|Code Style|Java|Wrapping and Braces|Assignment Statement.