summaryrefslogtreecommitdiffstats
path: root/pki/base/java-tools/src/com/netscape/cmstools/GenExtKeyUsage.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/java-tools/src/com/netscape/cmstools/GenExtKeyUsage.java')
-rw-r--r--pki/base/java-tools/src/com/netscape/cmstools/GenExtKeyUsage.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/pki/base/java-tools/src/com/netscape/cmstools/GenExtKeyUsage.java b/pki/base/java-tools/src/com/netscape/cmstools/GenExtKeyUsage.java
index af228b9bb..c2d4e869b 100644
--- a/pki/base/java-tools/src/com/netscape/cmstools/GenExtKeyUsage.java
+++ b/pki/base/java-tools/src/com/netscape/cmstools/GenExtKeyUsage.java
@@ -17,7 +17,6 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.cmstools;
-
import java.util.Vector;
import netscape.security.util.DerOutputStream;
@@ -25,14 +24,13 @@ import netscape.security.util.DerValue;
import netscape.security.util.ObjectIdentifier;
import netscape.security.x509.Extension;
-
/**
* Generates a DER-encoded Extended Key Usage extension.
* The first parameter is the criticality of the extension, true or false.
* The OIDs to be included in the extension are passed as command-line
- * arguments. The OIDs are described in RFC 2459. For example,
+ * arguments. The OIDs are described in RFC 2459. For example,
* the OID for code signing is 1.3.6.1.5.5.7.3.3.
- *
+ *
* @version $Revision$, $Date$
*/
public class GenExtKeyUsage {
@@ -42,7 +40,7 @@ public class GenExtKeyUsage {
if (args.length < 2) {
System.out.println("Usage: GenExtKeyUsage [true|false] <OID> ...");
System.exit(-1);
- }
+ }
boolean critical = false;