summaryrefslogtreecommitdiffstats
path: root/base/console/src/com/netscape/admin/certsrv/config/install/WIKRAStorageKeyPage.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/WIKRAStorageKeyPage.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/WIKRAStorageKeyPage.java')
-rw-r--r--base/console/src/com/netscape/admin/certsrv/config/install/WIKRAStorageKeyPage.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/base/console/src/com/netscape/admin/certsrv/config/install/WIKRAStorageKeyPage.java b/base/console/src/com/netscape/admin/certsrv/config/install/WIKRAStorageKeyPage.java
index 6cce19d95..7f42e7671 100644
--- a/base/console/src/com/netscape/admin/certsrv/config/install/WIKRAStorageKeyPage.java
+++ b/base/console/src/com/netscape/admin/certsrv/config/install/WIKRAStorageKeyPage.java
@@ -30,7 +30,7 @@ import javax.swing.event.*;
import java.awt.event.*;
/**
- * Install KRA storage key.
+ * Install KRA storage key.
*
* @author Christine Ho
* @version $Revision$, $Date$
@@ -45,7 +45,7 @@ class WIKRAStorageKeyPage extends WizardBasePanel implements IWizardPanel {
"install-cakra-storagekey-wizard-help";
private static final String RAKRAHELPINDEX =
"install-rakra-storagekey-wizard-help";
-
+
protected JComboBox mKeyTypeBox, mKeyLengthBox, mDSAKeyLengthBox, mTokenBox;
protected JPasswordField mPassword, mPasswordAgain, mSOPPassword;
protected JLabel keyTypeLbl, keyLengthCustomText, keyLengthLbl, unitLbl,
@@ -122,7 +122,7 @@ class WIKRAStorageKeyPage extends WizardBasePanel implements IWizardPanel {
//mTokenBox.setSelectedIndex(0);
mTokenBox.addItemListener(this);
- return true;
+ return true;
}
public boolean validatePanel() {
@@ -131,13 +131,13 @@ class WIKRAStorageKeyPage extends WizardBasePanel implements IWizardPanel {
public void actionPerformed(ActionEvent e) {
int index = mTokenBox.getSelectedIndex();
- if (index > 0) {
+ if (index > 0) {
mPassword.setEnabled(true);
mPassword.setBackground(mActiveColor);
} else {
// Internal Token
mPassword.setEnabled(false);
- mPassword.setBackground(getBackground());
+ mPassword.setBackground(getBackground());
}
}
@@ -293,7 +293,7 @@ class WIKRAStorageKeyPage extends WizardBasePanel implements IWizardPanel {
gbc.anchor = gbc.NORTHWEST;
gbc.weightx = 1.0;
gbc.gridwidth = gbc.REMAINDER;
- gbc.insets = new Insets(COMPONENT_SPACE, COMPONENT_SPACE,
+ gbc.insets = new Insets(COMPONENT_SPACE, COMPONENT_SPACE,
COMPONENT_SPACE,
COMPONENT_SPACE);
panel2.add(mSOPPassword, gbc);