Skip to content

Commit a4894c0

Browse files
committed
Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130355 13f79535-47bb-0310-9956-ffa450edef68
1 parent dceaa67 commit a4894c0

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@
2626
/**
2727
* <p>
2828
* The "B" encoding is identical to the Base64 encoding defined by <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC
29-
* 1521 </a> and allows a character set to be specified.
29+
* 1521</a> and allows a character set to be specified.
3030
* </p>
3131
*
3232
* <p>
33-
* <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522 </a> describes techniques to allow the encoding of non-ASCII
33+
* <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522</a> describes techniques to allow the encoding of non-ASCII
3434
* text in various portions of a RFC 822 [2] message header, in a manner which is unlikely to confuse existing message
3535
* handling software.
3636
* </p>
3737
*
38-
* @see <a href="http://www.ietf.org/rfc/rfc1522.txt"> MIME (Multipurpose Internet Mail Extensions) Part Two: Message
39-
* Header Extensions for Non-ASCII Text </a>
38+
* @see <a href="http://www.ietf.org/rfc/rfc1522.txt">MIME (Multipurpose Internet Mail Extensions) Part Two: Message
39+
* Header Extensions for Non-ASCII Text</a>
4040
*
4141
* @author Apache Software Foundation
4242
* @since 1.3
43-
* @version $Id: BCodec.java,v 1.3 2004/04/09 22:21:07 ggregory Exp $
43+
* @version $Id: BCodec.java,v 1.4 2004/04/13 22:02:37 ggregory Exp $
4444
*/
4545
public class BCodec extends RFC1522Codec implements StringEncoder, StringDecoder {
4646
/**
@@ -62,7 +62,7 @@ public BCodec() {
6262
* the default string charset to use.
6363
*
6464
* @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
65-
* encoding names </a>
65+
* encoding names</a>
6666
*/
6767
public BCodec(final String charset) {
6868
super();

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@
2727
/**
2828
* <p>
2929
* The "Q" encoding is similar to the Quoted-Printable content-transfer-encoding defined in <a
30-
* href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>. It is designed to allow text containing mostly ASCII
30+
* href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521</a>. It is designed to allow text containing mostly ASCII
3131
* characters to be decipherable on an ASCII terminal without decoding.
3232
* </p>
3333
*
3434
* <p>
35-
* <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522 </a> describes techniques to allow the encoding of non-ASCII
35+
* <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522</a> describes techniques to allow the encoding of non-ASCII
3636
* text in various portions of a RFC 822 [2] message header, in a manner which is unlikely to confuse existing message
3737
* handling software.
3838
* </p>
3939
*
40-
* @see <a href="http://www.ietf.org/rfc/rfc1522.txt"> MIME (Multipurpose Internet Mail Extensions) Part Two: Message
41-
* Header Extensions for Non-ASCII Text </a>
40+
* @see <a href="http://www.ietf.org/rfc/rfc1522.txt">MIME (Multipurpose Internet Mail Extensions) Part Two: Message
41+
* Header Extensions for Non-ASCII Text</a>
4242
*
4343
* @author Apache Software Foundation
4444
* @since 1.3
45-
* @version $Id: QCodec.java,v 1.3 2004/04/09 22:21:07 ggregory Exp $
45+
* @version $Id: QCodec.java,v 1.4 2004/04/13 22:03:11 ggregory Exp $
4646
*/
4747
public class QCodec extends RFC1522Codec implements StringEncoder, StringDecoder {
4848
/**
@@ -118,7 +118,7 @@ public QCodec() {
118118
* the default string charset to use.
119119
*
120120
* @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
121-
* encoding names </a>
121+
* encoding names</a>
122122
*/
123123
public QCodec(final String charset) {
124124
super();

0 commit comments

Comments
 (0)