Skip to content

Commit fab180b

Browse files
committed
Add missing @SInCE 1.15 tags
1 parent 53c93d0 commit fab180b

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ public Base32(final int lineLength, final byte[] lineSeparator, final boolean us
311311
* @throws IllegalArgumentException
312312
* Thrown when the {@code lineSeparator} contains Base32 characters. Or the
313313
* lineLength > 0 and lineSeparator is null.
314+
* @since 1.15
314315
*/
315316
public Base32(final int lineLength, final byte[] lineSeparator, final boolean useHex, final byte padding, CodecPolicy decodingPolicy) {
316317
super(BYTES_PER_UNENCODED_BLOCK, BYTES_PER_ENCODED_BLOCK, lineLength,
@@ -365,7 +366,6 @@ public Base32(final int lineLength, final byte[] lineSeparator, final boolean us
365366
* @param inPos Position to start reading data from.
366367
* @param inAvail Amount of bytes available from input for decoding.
367368
* @param context the context to be used
368-
*
369369
*/
370370
@Override
371371
void decode(final byte[] input, int inPos, final int inAvail, final Context context) {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ public String toString() {
182182

183183
/**
184184
* The default decoding policy.
185+
* @since 1.15
185186
*/
186187
protected static final CodecPolicy DECODING_POLICY_DEFAULT = CodecPolicy.LENIENT;
187188

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ public static byte[] decodeHex(final char[] data) throws DecoderException {
8888
* @param outOffset The position within {@code out} to start writing the decoded bytes.
8989
* @return the number of bytes written to {@code out}.
9090
* @throws DecoderException Thrown if an odd number of characters or illegal characters are supplied
91-
*
9291
* @since 1.15
9392
*/
9493
public static int decodeHex(final char[] data, final byte[] out, final int outOffset) throws DecoderException {

0 commit comments

Comments
 (0)