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-codec.git
The following commit(s) were added to refs/heads/master by this push:
new a725a353 Javadoc 8 can't find {@link
#setDecodeTableFormat(DecodeTableFormat)}
a725a353 is described below
commit a725a353834080ef04f0b629b39ec834265fdb28
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Dec 31 08:36:27 2025 -0500
Javadoc 8 can't find {@link #setDecodeTableFormat(DecodeTableFormat)}
Add missing @since tag
---
src/main/java/org/apache/commons/codec/binary/Base64.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/codec/binary/Base64.java
b/src/main/java/org/apache/commons/codec/binary/Base64.java
index 8827e8a2..b1730e93 100644
--- a/src/main/java/org/apache/commons/codec/binary/Base64.java
+++ b/src/main/java/org/apache/commons/codec/binary/Base64.java
@@ -120,6 +120,7 @@ public class Base64 extends BaseNCodec {
*
* @param format table format to be used on Base64 decoding. Use
{@link DecodeTableFormat#MIXED} or null to reset to the default behavior.
* @return {@code this} instance.
+ * @since 1.21
*/
public Builder setDecodeTableFormat(final DecodeTableFormat format) {
if (format == null) {
@@ -144,11 +145,12 @@ public class Base64 extends BaseNCodec {
return super.setEncodeTable(encodeTable);
}
+ // Javadoc 8 can't find {@link
#setDecodeTableFormat(DecodeTableFormat)}
/**
* Sets the URL-safe encoding policy.
* <p>
* This method does not modify behavior on decoding operations. For
configuration of the decoding behavior, please use
- * {@link #setDecodeTableFormat(DecodeTableFormat)} method.
+ * {@code Builder.setDecodeTableFormat(DecodeTableFormat)} method.
* </p>
*
* @param urlSafe URL-safe encoding policy, null resets to the default.