remove debugging printing that was accidentally added

This commit is contained in:
Alec Grieser 2019-03-01 17:05:48 -08:00
parent f66ddb13c2
commit 7340298202
No known key found for this signature in database
GPG Key ID: CAF63551C60D3462
1 changed files with 0 additions and 4 deletions

View File

@ -187,10 +187,6 @@ public class ByteArrayUtil {
// Array might change size. This is the "tricky" case.
int newLength = replace(src, offset, length, pattern, replacement, null);
if(newLength != length) {
if(newLength < 0) {
System.out.println("oops");
newLength = replace(src, offset, length, pattern, replacement, null);
}
dest = ByteBuffer.allocate(newLength);
}
else {