java - Eclipse autoformat rule for putting the method call on the same line? -
currently style this:
uidex reg = sink .connect( urlparts[1], props, clientinfo.getproperties(props .getproperty(vjdbcproperties.clientinfo_properties)), new callingcontext()); what want be:
uidex reg = sink.connect( urlparts[1], props, clientinfo.getproperties( props.getproperty( vjdbcproperties.clientinfo_properties)), new callingcontext()); i can't find exact option that, it? it's set "wrap when necessary". how on earth eclipse think .connect() needs on own line?
Comments
Post a Comment