We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0e5cac commit bcfcabaCopy full SHA for bcfcaba
src/main/java/at/favre/lib/bytes/BinaryToTextEncoding.java
@@ -181,8 +181,8 @@ public byte[] decode(String encoded) {
181
return array;
182
}
183
184
- private int maxLength(byte[] data, int radix) {
185
- return BigInteger.valueOf(2).pow(BigInteger.valueOf(data.length).multiply(BigInteger.valueOf(8)).intValue()).toString(radix).length();
186
- }
+// private int maxLength(byte[] data, int radix) {
+// return BigInteger.valueOf(2).pow(BigInteger.valueOf(data.length).multiply(BigInteger.valueOf(8)).intValue()).toString(radix).length();
+// }
187
188
0 commit comments