We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b4a63d commit ab2106dCopy full SHA for ab2106d
byte-array/ByteArray.java
@@ -92,7 +92,7 @@ public static void main (final String... args) {
92
byte[] input = new byte[0];
93
switch (config.fmtIn) {
94
case BASE64:
95
- input = new Base64 ().decode (config.strIn.toUpperCase ());
+ input = new Base64 ().decode (config.strIn);
96
break;
97
case BASE32:
98
input = new Base32 ().decode (config.strIn.toUpperCase ());
0 commit comments