protected String decapitalize()

in src/main/java/org/apache/activemq/nms/openwire/tool/commands/CommandCodeGenerator.java [182:187]


    protected String decapitalize(String text) {
        if (text == null) {
            return null;
        }
        return text.substring(0, 1).toLowerCase() + text.substring(1);
    }