Skip to content

Commit f7e7db3

Browse files
committed
Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1080712 13f79535-47bb-0310-9956-ffa450edef68
1 parent 279577d commit f7e7db3

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

src/java/org/apache/commons/codec/binary/Base32.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package org.apache.commons.codec.binary;
1919

2020
/**
21-
* Provides Base32 encoding and decoding as defined by RFC 4648.
21+
* Provides Base32 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>.
2222
*
2323
* <p>
2424
* The class can be parameterized in the following manner with various constructors:
@@ -33,8 +33,7 @@
3333
* This class operates directly on byte streams, and not character streams.
3434
* </p>
3535
* <p>
36-
* This class is not thread-safe.
37-
* Each thread should use its own instance.
36+
* This class is not thread-safe. Each thread should use its own instance.
3837
* </p>
3938
*
4039
* @see <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>

src/java/org/apache/commons/codec/binary/Base64.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import java.math.BigInteger;
2121

2222
/**
23-
* Provides Base64 encoding and decoding as defined by RFC 2045.
23+
* Provides Base64 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>.
2424
*
2525
* <p>
2626
* This class implements section <cite>6.8. Base64 Content-Transfer-Encoding</cite> from RFC 2045 <cite>Multipurpose
@@ -40,8 +40,7 @@
4040
* character encodings which are compatible with the lower 127 ASCII chart (ISO-8859-1, Windows-1252, UTF-8, etc).
4141
* </p>
4242
* <p>
43-
* This class is not thread-safe.
44-
* Each thread should use its own instance.
43+
* This class is not thread-safe. Each thread should use its own instance.
4544
* </p>
4645
*
4746
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>

src/java/org/apache/commons/codec/net/QuotedPrintableCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
/**
3434
* <p>
35-
* Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>.
35+
* Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521</a>.
3636
* </p>
3737
* <p>
3838
* The Quoted-Printable encoding is intended to represent data that largely consists of octets that correspond to

0 commit comments

Comments
 (0)