summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/util/ASN1CharStrConvMap.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/util/ASN1CharStrConvMap.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/util/ASN1CharStrConvMap.java')
-rw-r--r--base/util/src/netscape/security/util/ASN1CharStrConvMap.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/base/util/src/netscape/security/util/ASN1CharStrConvMap.java b/base/util/src/netscape/security/util/ASN1CharStrConvMap.java
index c9c364f4f..912b363e5 100644
--- a/base/util/src/netscape/security/util/ASN1CharStrConvMap.java
+++ b/base/util/src/netscape/security/util/ASN1CharStrConvMap.java
@@ -28,13 +28,13 @@ import java.util.Map;
* Maps a ASN.1 character string type to a charset encoder and decoder.
* The converter is used to convert a DerValue of a ASN.1 character string type
* from bytes to unicode characters and vice versa.
- *
+ *
* <p>
* A global default ASN1CharStrConvMap is created when the class is initialized. The global default map is extensible.
- *
+ *
* @author Lily Hsiao
* @author Slava Galperin
- *
+ *
*/
public class ASN1CharStrConvMap {
@@ -48,10 +48,10 @@ public class ASN1CharStrConvMap {
/**
* Get an encoder for the specified DER tag.
- *
+ *
* @param tag A DER tag of a ASN.1 character string type,
* for example DerValue.tag_PrintableString.
- *
+ *
* @return An encoder for the DER tag.
*/
public CharsetEncoder getEncoder(byte tag) {
@@ -63,10 +63,10 @@ public class ASN1CharStrConvMap {
/**
* Get a decoder for the given DER tag.
- *
+ *
* @param tag A DER tag of a ASN.1 character string type,
* for example DerValue.tag_PrintableString.
- *
+ *
* @return A decoder for the DER tag.
*/
public CharsetDecoder getDecoder(byte tag) {
@@ -78,7 +78,7 @@ public class ASN1CharStrConvMap {
/**
* Add a tag-charset entry in the map.
- *
+ *
* @param tag A DER tag of a ASN.1 character string type,
* ex. DerValue.tag_IA5String
* @param charset A charset for the tag.
@@ -101,7 +101,7 @@ public class ASN1CharStrConvMap {
/**
* Get an iterator of all tags in the map.
- *
+ *
* @return An Iterator of DER tags in the map as Bytes.
*/
public Iterator<Byte> getTags() {
@@ -112,7 +112,7 @@ public class ASN1CharStrConvMap {
/**
* Get the global ASN1CharStrConvMap.
- *
+ *
* @return The global default ASN1CharStrConvMap.
*/
static public ASN1CharStrConvMap getDefault() {
@@ -121,7 +121,7 @@ public class ASN1CharStrConvMap {
/**
* Set the global default ASN1CharStrConvMap.
- *
+ *
* @param newDefault The new default ASN1CharStrConvMap.
*/
static public void setDefault(ASN1CharStrConvMap newDefault) {