File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/java/org/apache/commons/codec Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public DecoderException(final String message) {
6060 * @see String#format(String, Object...)
6161 * @since 1.20.0
6262 */
63- public DecoderException (final String message , Object ... args ) {
63+ public DecoderException (final String message , final Object ... args ) {
6464 super (String .format (message , args ));
6565 }
6666
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public Base16 get() {
7979 }
8080
8181 @ Override
82- public Builder setEncodeTable (byte ... encodeTable ) {
82+ public Builder setEncodeTable (final byte ... encodeTable ) {
8383 super .setDecodeTableRaw (Arrays .equals (encodeTable , LOWER_CASE_ENCODE_TABLE ) ? LOWER_CASE_DECODE_TABLE : UPPER_CASE_DECODE_TABLE );
8484 return super .setEncodeTable (encodeTable );
8585 }
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ public Base32 get() {
9797 }
9898
9999 @ Override
100- public Builder setEncodeTable (byte ... encodeTable ) {
100+ public Builder setEncodeTable (final byte ... encodeTable ) {
101101 super .setDecodeTableRaw (Arrays .equals (encodeTable , HEX_ENCODE_TABLE ) ? HEX_DECODE_TABLE : DECODE_TABLE );
102102 return super .setEncodeTable (encodeTable );
103103 }
You can’t perform that action at this time.
0 commit comments