Skip to content

Commit 60b3bce

Browse files
committed
Use a URL to a prettier page: https://www.ietf.org/rfc/rfc2045
1 parent 22e691c commit 60b3bce

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/net/util/Base64.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* compatible with the lower 127 ASCII chart (ISO-8859-1, Windows-1252, UTF-8, etc).
4343
* </p>
4444
*
45-
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
45+
* @see <a href="https://www.ietf.org/rfc/rfc2045">RFC 2045</a>
4646
* @since 2.2
4747
* @deprecated Use {@link java.util.Base64}.
4848
*/
@@ -56,14 +56,14 @@ public class Base64 {
5656
* The {@value} character limit does not count the trailing CRLF, but counts all other characters, including any equal signs.
5757
* </p>
5858
*
59-
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 6.8</a>
59+
* @see <a href="https://www.ietf.org/rfc/rfc2045">RFC 2045 section 6.8</a>
6060
*/
6161
static final int CHUNK_SIZE = 76;
6262

6363
/**
6464
* Chunk separator per RFC 2045 section 2.1.
6565
*
66-
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 2.1</a>
66+
* @see <a href="https://www.ietf.org/rfc/rfc2045">RFC 2045 section 2.1</a>
6767
*/
6868
static final byte[] CHUNK_SEPARATOR = { '\r', '\n' };
6969

0 commit comments

Comments
 (0)