Skip to content

Commit a725a35

Browse files
committed
Javadoc 8 can't find {@link #setDecodeTableFormat(DecodeTableFormat)}
Add missing @SInCE tag
1 parent 282999a commit a725a35

File tree

1 file changed

+3
-1
lines changed
  • src/main/java/org/apache/commons/codec/binary

1 file changed

+3
-1
lines changed

src/main/java/org/apache/commons/codec/binary/Base64.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ public Base64 get() {
120120
*
121121
* @param format table format to be used on Base64 decoding. Use {@link DecodeTableFormat#MIXED} or null to reset to the default behavior.
122122
* @return {@code this} instance.
123+
* @since 1.21
123124
*/
124125
public Builder setDecodeTableFormat(final DecodeTableFormat format) {
125126
if (format == null) {
@@ -144,11 +145,12 @@ public Builder setEncodeTable(final byte... encodeTable) {
144145
return super.setEncodeTable(encodeTable);
145146
}
146147

148+
// Javadoc 8 can't find {@link #setDecodeTableFormat(DecodeTableFormat)}
147149
/**
148150
* Sets the URL-safe encoding policy.
149151
* <p>
150152
* This method does not modify behavior on decoding operations. For configuration of the decoding behavior, please use
151-
* {@link #setDecodeTableFormat(DecodeTableFormat)} method.
153+
* {@code Builder.setDecodeTableFormat(DecodeTableFormat)} method.
152154
* </p>
153155
*
154156
* @param urlSafe URL-safe encoding policy, null resets to the default.

0 commit comments

Comments
 (0)