Skip to content

Commit 1a155a3

Browse files
authored
Remove println call from library code
Previously, a `max length` message was printed any time you called `Bytes.encode(byte[], byteOrder)`.
1 parent abdd852 commit 1a155a3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/at/favre/lib/bytes/BinaryToTextEncoding.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ class BaseRadix implements EncoderDecoder {
155155

156156
@Override
157157
public String encode(byte[] array, ByteOrder byteOrder) {
158-
System.out.println("max length " + maxLength(array, radix));
159158
return new BigInteger(1, (byteOrder == ByteOrder.BIG_ENDIAN) ? array : Bytes.from(array).reverse().array()).toString(radix);
160159
}
161160

0 commit comments

Comments
 (0)