45464748495051
if (getRemainingSize() > 0) { buffer[count] = (byte)b; count++; } else throw new NotEnoughMemoryException(); }
61626364656667
if (getRemainingSize() >= len) { System.arraycopy(b, off, buffer, count, len); count += len; } else throw new NotEnoughMemoryException(); }