From 7c7b9d023cd466c1771068badc020dab36beb553 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Thu, 5 Apr 2012 14:49:11 -0500 Subject: 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 --- .../src/com/netscape/cmstools/PrettyPrintCert.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'base/java-tools/src/com/netscape/cmstools/PrettyPrintCert.java') diff --git a/base/java-tools/src/com/netscape/cmstools/PrettyPrintCert.java b/base/java-tools/src/com/netscape/cmstools/PrettyPrintCert.java index 382c4e312..88d8cb05b 100644 --- a/base/java-tools/src/com/netscape/cmstools/PrettyPrintCert.java +++ b/base/java-tools/src/com/netscape/cmstools/PrettyPrintCert.java @@ -42,21 +42,21 @@ import netscape.security.x509.X509CertInfo; * program via the command line, and that the contents contain a certificate * encoded in an ASCII BASE 64 format. Note that the data file may contain * an optional "-----BEGIN" header and/or an optional "-----END" trailer. - * + * *

* The program may be invoked as follows: - * + * *

- * 
+ *
  *      PrettyPrintCert <input filename> [output filename]
- * 
+ *
  *      NOTE:  <input filename>   must contain an ASCII
  *                                BASE 64 encoded certificate
- * 
+ *
  *             <output filename>  contains a certificate displayed
  *                                in a "pretty print" ASCII format
  * 
- * + * * @version $Revision$, $Date$ */ -- cgit