summaryrefslogtreecommitdiffstats
path: root/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.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/CMSCRLFormatPanel.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/CMSCRLFormatPanel.java')
-rw-r--r--base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java b/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java
index 3257b90a0..4486bd80b 100644
--- a/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java
+++ b/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java
@@ -33,10 +33,10 @@ import java.util.StringTokenizer;
* @version $Revision$, $Date$
*/
public class CMSCRLFormatPanel extends CMSBaseTab {
-
+
/*==========================================================
* variables
- *==========================================================*/
+ *==========================================================*/
private static String PANEL_NAME = "CRLFORMAT";
private JCheckBox mEnableExtensions;
private JCheckBox mEnableExpired;
@@ -203,7 +203,7 @@ public class CMSCRLFormatPanel extends CMSBaseTab {
gbc.gridwidth = 1;
gbc.insets = new Insets(COMPONENT_SPACE,DIFFERENT_COMPONENT_SPACE,0,0);
contentsPanel.add(mProfileCertsOnly, gbc);
-
+
mProfiles = makeJTextField(20);
gbc.anchor = gbc.WEST;
gbc.gridx++;
@@ -329,7 +329,7 @@ public class CMSCRLFormatPanel extends CMSBaseTab {
nvps.put(Constants.PR_EXTENSIONS, Constants.TRUE);
else
nvps.put(Constants.PR_EXTENSIONS, Constants.FALSE);
-
+
if (mEnableExpired.isSelected())
nvps.put(Constants.PR_INCLUDE_EXPIREDCERTS, Constants.TRUE);
else
@@ -344,7 +344,7 @@ public class CMSCRLFormatPanel extends CMSBaseTab {
nvps.put(Constants.PR_CA_CERTS_ONLY, Constants.TRUE);
else
nvps.put(Constants.PR_CA_CERTS_ONLY, Constants.FALSE);
-
+
if (mProfileCertsOnly.isSelected())
nvps.put(Constants.PR_PROFILE_CERTS_ONLY, Constants.TRUE);
else
@@ -401,7 +401,7 @@ public class CMSCRLFormatPanel extends CMSBaseTab {
public boolean resetCallback() {
refresh();
return true;
- }
+ }
public void actionPerformed(ActionEvent e) {
if (e.getSource().equals(mProfileCertsOnly)) {
@@ -432,7 +432,7 @@ public class CMSCRLFormatPanel extends CMSBaseTab {
* Override the initialize method only for this panel.
* We need to refresh in case the CRLDistributionPointExtension
* has modified the caCertsOnly property for us.
- **/
+ **/
public void initialize() {
Debug.println("CMSCRLFormatPanel: intialize()");
if (!mInit) {