summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/x509/PrintableConverter.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/util/src/netscape/security/x509/PrintableConverter.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/util/src/netscape/security/x509/PrintableConverter.java')
-rw-r--r--base/util/src/netscape/security/x509/PrintableConverter.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/base/util/src/netscape/security/x509/PrintableConverter.java b/base/util/src/netscape/security/x509/PrintableConverter.java
index d63696d8f..27e6ad4d2 100644
--- a/base/util/src/netscape/security/x509/PrintableConverter.java
+++ b/base/util/src/netscape/security/x509/PrintableConverter.java
@@ -29,10 +29,10 @@ import netscape.security.util.DerValue;
/**
* A AVAValueConverter that converts a Printable String attribute to a DerValue
* and vice versa. An example an attribute that is a printable string is "C".
- *
+ *
* @see ASN1CharStrConvMap
* @see AVAValueConverter
- *
+ *
* @author Lily Hsiao, Slava Galperin at Netscape Communications, Inc.
*/
@@ -44,11 +44,11 @@ public class PrintableConverter implements AVAValueConverter {
/**
* Converts a string with ASN.1 Printable characters to a DerValue.
- *
+ *
* @param valueString a string with Printable characters.
- *
+ *
* @return a DerValue.
- *
+ *
* @exception IOException if a Printable encoder is not
* available for the conversion.
*/
@@ -78,11 +78,11 @@ public class PrintableConverter implements AVAValueConverter {
* Converts a BER encoded value of PrintableString to a DER encoded value.
* Checks if the BER encoded value is a PrintableString.
* NOTE only DER encoded values are currently accepted on input.
- *
+ *
* @param berStream A byte array of the BER encoded value.
- *
+ *
* @return A DerValue.
- *
+ *
* @exception IOException if the BER value cannot be converted to a
* PrintableString DER value.
*/
@@ -97,11 +97,11 @@ public class PrintableConverter implements AVAValueConverter {
/**
* Converts a DerValue of PrintableString to a java string with
* PrintableString characters.
- *
+ *
* @param avaValue a DerValue.
- *
+ *
* @return a string with PrintableString characters.
- *
+ *
* @exception IOException if the DerValue is not a PrintableString i.e.
* The DerValue cannot be converted to a string
* with PrintableString characters.