summaryrefslogtreecommitdiffstats
path: root/base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-04-05 14:49:11 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-04-09 10:03:25 -0500
commit7c7b9d023cd466c1771068badc020dab36beb553 (patch)
tree178877eb83e25336be7577953945fbdb0b9e1a15 /base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java
parentda1e6e2f49f66fd46c8039ff1aa4386309fba8f4 (diff)
downloadpki-7c7b9d023cd466c1771068badc020dab36beb553.tar.gz
pki-7c7b9d023cd466c1771068badc020dab36beb553.tar.xz
pki-7c7b9d023cd466c1771068badc020dab36beb553.zip
Removed whitespaces from Java code.
Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134
Diffstat (limited to 'base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java')
-rw-r--r--base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java b/base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java
index 96c76438..e2dc6459 100644
--- a/base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java
+++ b/base/console/src/com/netscape/admin/certsrv/config/install/WIMasterOrClone.java
@@ -40,9 +40,9 @@ class WIMasterOrClone extends WizardBasePanel implements IWizardPanel {
protected JRadioButton mNo;
protected JTextArea mLabel;
private static final String PANELNAME = "MASTERORCLONE";
- private static final String HELPINDEX =
+ private static final String HELPINDEX =
"install-internaldb-createdbagain-help";
-
+
WIMasterOrClone(JDialog parent) {
super(PANELNAME);
mParent = parent;
@@ -97,7 +97,7 @@ class WIMasterOrClone extends WizardBasePanel implements IWizardPanel {
Debug.println("WIMasterOrClone:concludePanel() 2");
boolean ready = send(rawData, wizardInfo);
endProgressStatus();
-
+
if (!ready) {
String str = getErrorMessage(wizardInfo);
if (str == null)
@@ -125,24 +125,24 @@ class WIMasterOrClone extends WizardBasePanel implements IWizardPanel {
PANELNAME+"_TEXT_HEADING_LABEL"));
gbc.anchor = gbc.NORTHWEST;
gbc.weightx = 1.0;
- gbc.insets = new Insets(COMPONENT_SPACE,COMPONENT_SPACE,
+ gbc.insets = new Insets(COMPONENT_SPACE,COMPONENT_SPACE,
COMPONENT_SPACE,COMPONENT_SPACE);
gbc.gridwidth = gbc.REMAINDER;
add(mLabel, gbc);
-
-
+
+
mYes = makeJRadioButton("YES", false);
gbc.anchor = gbc.NORTHWEST;
gbc.weightx = 1.0;
- gbc.insets = new Insets(COMPONENT_SPACE,COMPONENT_SPACE,
+ gbc.insets = new Insets(COMPONENT_SPACE,COMPONENT_SPACE,
COMPONENT_SPACE,COMPONENT_SPACE);
gbc.gridwidth = gbc.REMAINDER;
add(mYes, gbc);
-
+
mNo = makeJRadioButton("NO", false);
gbc.anchor = gbc.NORTHWEST;
gbc.weightx = 1.0;
- gbc.insets = new Insets(0,COMPONENT_SPACE,
+ gbc.insets = new Insets(0,COMPONENT_SPACE,
COMPONENT_SPACE,COMPONENT_SPACE);
gbc.gridwidth = gbc.REMAINDER;
add(mNo, gbc);