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
commit 59543cbb3f94f60d3a904e3863d807328f6ed7c4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon May 27 08:48:06 2024 -0400 Javadoc --- src/main/java/org/apache/commons/net/util/Base64.java | 4 ++-- 1 file changed, 2 insertions(+), 2 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 2364125e..50d58372 100644 --- a/src/main/java/org/apache/commons/net/util/Base64.java +++ b/src/main/java/org/apache/commons/net/util/Base64.java @@ -553,7 +553,7 @@ public class Base64 { * * @param lineLength Each line of encoded data will be at most of the given length (rounded down to the nearest multiple of 4). * If {@code lineLength <= 0}, then the output will not be divided into lines (chunks). Ignored when decoding. - * @param lineSeparator Each line of encoded data will end with this sequence of bytes. + * @param lineSeparator Each line of encoded data will end with this sequence of bytes. Not used for decoding. * @throws IllegalArgumentException Thrown when the provided lineSeparator included some base64 characters. * @since 1.4 */ @@ -575,7 +575,7 @@ public class Base64 { * * @param lineLength Each line of encoded data will be at most of the given length (rounded down to the nearest multiple of 4). * If {@code lineLength <= 0}, then the output will not be divided into lines (chunks). Ignored when decoding. - * @param lineSeparator Each line of encoded data will end with this sequence of bytes. + * @param lineSeparator Each line of encoded data will end with this sequence of bytes. Not used for decoding. * @param urlSafe Instead of emitting '+' and '/' we emit '-' and '_' respectively. urlSafe is only applied to encode operations. Decoding seamlessly * handles both modes. * @throws IllegalArgumentException The provided lineSeparator included some base64 characters. That's not going to work!