File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/java/org/apache/commons/codec/binary Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments