Author: ggregory
Date: Fri Mar 11 18:26:59 2011
New Revision: 1080712

URL: http://svn.apache.org/viewvc?rev=1080712&view=rev
Log:
Javadoc.

Modified:
    
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base32.java
    
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base64.java
    
commons/proper/codec/trunk/src/java/org/apache/commons/codec/net/QuotedPrintableCodec.java

Modified: 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base32.java
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base32.java?rev=1080712&r1=1080711&r2=1080712&view=diff
==============================================================================
--- 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base32.java 
(original)
+++ 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base32.java 
Fri Mar 11 18:26:59 2011
@@ -18,7 +18,7 @@
 package org.apache.commons.codec.binary;
 
 /**
- * Provides Base32 encoding and decoding as defined by RFC 4648.
+ * Provides Base32 encoding and decoding as defined by <a 
href="http://www.ietf.org/rfc/rfc4648.txt";>RFC 4648</a>.
  * 
  * <p>
  * The class can be parameterized in the following manner with various 
constructors:
@@ -33,8 +33,7 @@ package org.apache.commons.codec.binary;
  * This class operates directly on byte streams, and not character streams.
  * </p>
  * <p>
- * This class is not thread-safe.
- * Each thread should use its own instance.
+ * This class is not thread-safe. Each thread should use its own instance.
  * </p>
  * 
  * @see <a href="http://www.ietf.org/rfc/rfc4648.txt";>RFC 4648</a>

Modified: 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base64.java
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base64.java?rev=1080712&r1=1080711&r2=1080712&view=diff
==============================================================================
--- 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base64.java 
(original)
+++ 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Base64.java 
Fri Mar 11 18:26:59 2011
@@ -20,7 +20,7 @@ package org.apache.commons.codec.binary;
 import java.math.BigInteger;
 
 /**
- * Provides Base64 encoding and decoding as defined by RFC 2045.
+ * Provides Base64 encoding and decoding as defined by <a 
href="http://www.ietf.org/rfc/rfc2045.txt";>RFC 2045</a>.
  * 
  * <p>
  * This class implements section <cite>6.8. Base64 
Content-Transfer-Encoding</cite> from RFC 2045 <cite>Multipurpose
@@ -40,8 +40,7 @@ import java.math.BigInteger;
  * character encodings which are compatible with the lower 127 ASCII chart 
(ISO-8859-1, Windows-1252, UTF-8, etc).
  * </p>
  * <p>
- * This class is not thread-safe.
- * Each thread should use its own instance.
+ * This class is not thread-safe. Each thread should use its own instance.
  * </p>
  * 
  * @see <a href="http://www.ietf.org/rfc/rfc2045.txt";>RFC 2045</a>

Modified: 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/net/QuotedPrintableCodec.java
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/net/QuotedPrintableCodec.java?rev=1080712&r1=1080711&r2=1080712&view=diff
==============================================================================
--- 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/net/QuotedPrintableCodec.java
 (original)
+++ 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/net/QuotedPrintableCodec.java
 Fri Mar 11 18:26:59 2011
@@ -32,7 +32,7 @@ import org.apache.commons.codec.binary.S
 
 /**
  * <p>
- * Codec for the Quoted-Printable section of <a 
href="http://www.ietf.org/rfc/rfc1521.txt";>RFC 1521 </a>.
+ * Codec for the Quoted-Printable section of <a 
href="http://www.ietf.org/rfc/rfc1521.txt";>RFC 1521</a>.
  * </p>
  * <p>
  * The Quoted-Printable encoding is intended to represent data that largely 
consists of octets that correspond to


Reply via email to