Browse Source

REPORT-38872 修改下变量名

final/10.0
hades 4 years ago
parent
commit
24d865d691
  1. 8
      designer-base/src/main/java/com/fr/env/RemoteEnvPane.java

8
designer-base/src/main/java/com/fr/env/RemoteEnvPane.java vendored

@ -147,7 +147,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
/**
* 当前远程工作目录是否为新创建的
*/
private boolean newCreate;
private boolean newCreated;
/**
* 主机名web应用Servlet端口监听器
@ -333,7 +333,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
this.certPathInput.setText(certPath);
this.certSecretKeyInput.setText(certSecretKey);
this.rememberPwdCheckbox.setSelected(rememberPwd);
this.newCreate = ob.isNewCreated();
this.newCreated = ob.isNewCreated();
} else {
this.remoteWorkspaceURL = RemoteWorkspaceURL.createDefaultURL();
this.usernameInput.setText(StringUtils.EMPTY);
@ -341,7 +341,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
this.certPathInput.setText(StringUtils.EMPTY);
this.certSecretKeyInput.setText(StringUtils.EMPTY);
this.rememberPwdCheckbox.setSelected(true);
this.newCreate = true;
this.newCreated = true;
}
fillRemoteEnvURLField();
@ -374,7 +374,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
rememberPwd);
RemoteDesignerWorkspaceInfo info = RemoteDesignerWorkspaceInfo.create(connection);
info.setNewCreated(newCreate);
info.setNewCreated(newCreated);
return info;
}

Loading…
Cancel
Save