So I'm building a URL as below:
final URL url = new URLBuilder().withPath("/basePath/servicePath/")
.withQueryParam("param", "paramValue")
.buildURL();
After Ctrl + Shift + F, the formatting changes to:
final URL url = new URLBuilder().withPath("/basePath/servicePath/")
.withQueryParam("param", "paramValue")
.buildURL();
Would really appreciate if someone could help me out with the appropriate eclipse settings in preferences so that this doesn't happen.
Thanks!