目前我的风格是这样的:
UIDEx reg = sink
.connect(
urlparts[1],
props,
ClientInfo.getProperties(props
.getProperty(VJdbcProperties.CLIENTINFO_PROPERTIES)),
new CallingContext());
我真正想要的是:
UIDEx reg = sink.connect(
urlparts[1],
props,
ClientInfo.getProperties(
props.getProperty(
VJdbcProperties.CLIENTINFO_PROPERTIES)),
new CallingContext());
我找不到确切的选项,它在哪里?它已经设置为“必要时换行”。 Eclipse怎么认为.connect()需要在它自己的行上?