Package ariba.util.core

Examples of ariba.util.core.FastStringBuffer.startsWith()


        @return the string passed in but with the prefix removed
    */
    private String removeLogPrefix (String s)
    {
        FastStringBuffer buf = new FastStringBuffer(s);
        if (buf.startsWith(StringTablePrefix)) {
            return buf.substring(StringTablePrefix.length(), s.length());
        }

        return s;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.