File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/net/util Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments