Package hudson.util

Examples of hudson.util.ByteArrayOutputStream2


    private void eol() throws IOException {
        eol(buf.getBuffer(),buf.size());

        // reuse the buffer under normal circumstances, but don't let the line buffer grow unbounded
        if (buf.size()>4096)
            buf = new ByteArrayOutputStream2();
        else
            buf.reset();
    }
View Full Code Here

TOP

Related Classes of hudson.util.ByteArrayOutputStream2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.