Skip to content

Commit c56b956

Browse files
committed
Bullet-proof internals
1 parent d2215d5 commit c56b956

File tree

1 file changed

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

1 file changed

+3
-0
lines changed

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

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
package org.apache.commons.codec.binary;
1919

20+
import java.util.Objects;
21+
2022
import org.apache.commons.codec.CodecPolicy;
2123

2224
/**
@@ -138,6 +140,7 @@ public Base16(final boolean lowerCase) {
138140
*/
139141
private Base16(final boolean lowerCase, final byte[] encodeTable, final CodecPolicy decodingPolicy) {
140142
super(BYTES_PER_UNENCODED_BLOCK, BYTES_PER_ENCODED_BLOCK, 0, 0, PAD_DEFAULT, decodingPolicy);
143+
Objects.requireNonNull(encodeTable, "encodeTable");
141144
this.encodeTable = encodeTable;
142145
this.decodeTable = encodeTable == LOWER_CASE_ENCODE_TABLE ? LOWER_CASE_DECODE_TABLE : UPPER_CASE_DECODE_TABLE;
143146
}

0 commit comments

Comments
 (0)