fix commemt

This commit is contained in:
Looly
2024-03-28 23:31:52 +08:00
parent 966941ca7b
commit 0d3eed0bdd
2 changed files with 1 additions and 2 deletions

View File

@@ -356,7 +356,7 @@ public class CrockfordBase32Codec {
*
* @param pArray byte[] array which will later be encoded
* @return amount of space needed to encode the supplied array.
* Returns a long since a max-len array will require > Integer.MAX_VALUE
* Returns a long since a max-len array will require > Integer.MAX_VALUE
*/
public long getEncodedLength(final byte[] pArray) {
// Calculate non-chunked size - rounded up to allow for padding

View File

@@ -23,7 +23,6 @@ import java.math.BigInteger;
* 例如十进制数57在二进制写作111001在16进制写作39。<br>
* 像java,c这样的语言为了区分十六进制和十进制数值,会在十六进制数的前面加上 0x,比如0x20是十进制的32,而不是十进制的20<br>
* <p>
* <p>
* 此工具类为16进制组合工具类除了继承{@link Hex}实现编码解码外,提供其它转换类和识别类工具。
*
* @author Looly