summaryrefslogtreecommitdiffstats
path: root/base/console/src/com/netscape/admin/certsrv/keycert/WExecute1Page.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/console/src/com/netscape/admin/certsrv/keycert/WExecute1Page.java')
-rw-r--r--base/console/src/com/netscape/admin/certsrv/keycert/WExecute1Page.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/base/console/src/com/netscape/admin/certsrv/keycert/WExecute1Page.java b/base/console/src/com/netscape/admin/certsrv/keycert/WExecute1Page.java
index d13bca6e4..c505219b9 100644
--- a/base/console/src/com/netscape/admin/certsrv/keycert/WExecute1Page.java
+++ b/base/console/src/com/netscape/admin/certsrv/keycert/WExecute1Page.java
@@ -37,7 +37,7 @@ class WExecute1Page extends WizardBasePanel implements IWizardPanel {
private static final String HELPINDEX =
"configuration-keycert-wizard-certrequest-help";
private JTextArea desc;
-
+
WExecute1Page(JDialog parent) {
super(PANELNAME);
mParent = parent;
@@ -58,8 +58,8 @@ class WExecute1Page extends WizardBasePanel implements IWizardPanel {
public boolean initializePanel(WizardInfo info) {
CertSetupWizardInfo wizardInfo = (CertSetupWizardInfo)info;
if (wizardInfo.getOperationType().equals(wizardInfo.REQUESTTYPE) &&
-// !wizardInfo.isNewKey() &&
- wizardInfo.getCAType().equals(wizardInfo.SUBORDINATE_CA) &&
+// !wizardInfo.isNewKey() &&
+ wizardInfo.getCAType().equals(wizardInfo.SUBORDINATE_CA) &&
!(wizardInfo.isSSLCertLocalCA())) {
String title = "";
@@ -78,7 +78,7 @@ class WExecute1Page extends WizardBasePanel implements IWizardPanel {
else if (certType.equals(Constants.PR_OTHER_CERT))
title = mResource.getString("EXECUTE1WIZARD_BORDER_OTHER_LABEL");
setBorder(new TitledBorder(title));
-
+
String str = "";
if (wizardInfo.isNewKey()) {
str = mResource.getString("EXECUTE1WIZARD_TEXT_NEWKEY_LABEL");
@@ -88,8 +88,8 @@ class WExecute1Page extends WizardBasePanel implements IWizardPanel {
desc.setText(str);
return true;
}
-
- return false;
+
+ return false;
}
public boolean validatePanel() {