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

--


Andreas Menke

Diplom-Informatiker Univ.
Software-Entwicklung

Fon  0151 5081 1173
Mail asme...@snafu.de


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to