This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push:
new 60b3bce8 Use a URL to a prettier page: https://www.ietf.org/rfc/rfc2045
60b3bce8 is described below
commit 60b3bce83492d2c2fb556f2af7731aa747cdbab6
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Jan 16 07:22:52 2026 -0500
Use a URL to a prettier page: https://www.ietf.org/rfc/rfc2045
---
src/main/java/org/apache/commons/net/util/Base64.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/net/util/Base64.java
b/src/main/java/org/apache/commons/net/util/Base64.java
index 797cc03e..67da71f5 100644
--- a/src/main/java/org/apache/commons/net/util/Base64.java
+++ b/src/main/java/org/apache/commons/net/util/Base64.java
@@ -42,7 +42,7 @@ import java.util.Objects;
* compatible with the lower 127 ASCII chart (ISO-8859-1, Windows-1252, UTF-8,
etc).
* </p>
*
- * @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
+ * @see <a href="https://www.ietf.org/rfc/rfc2045">RFC 2045</a>
* @since 2.2
* @deprecated Use {@link java.util.Base64}.
*/
@@ -56,14 +56,14 @@ public class Base64 {
* The {@value} character limit does not count the trailing CRLF, but
counts all other characters, including any equal signs.
* </p>
*
- * @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section
6.8</a>
+ * @see <a href="https://www.ietf.org/rfc/rfc2045">RFC 2045 section 6.8</a>
*/
static final int CHUNK_SIZE = 76;
/**
* Chunk separator per RFC 2045 section 2.1.
*
- * @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section
2.1</a>
+ * @see <a href="https://www.ietf.org/rfc/rfc2045">RFC 2045 section 2.1</a>
*/
static final byte[] CHUNK_SEPARATOR = { '\r', '\n' };