looks wrong to me as well.
On 02/11/2012 12:01 PM, Andreas Menke wrote:
Hi,
from BaseNCodec.java:
how does resizeBuffer() know how big 'int size' is? Bug or Feature?
/**
* Ensure that the buffer has room for <code>size</code> bytes
*
* @param size minimum spare space required
*/
protected void ensureBufferSize(int size){
if ((buffer == null) || (buffer.length < pos + size)){
resizeBuffer();
}
}
Regards
Andreas
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]