private static int countCommas()

in src/main/java/org/apache/maven/plugins/deploy/DeployFileMojo.java [562:570]


    private static int countCommas(String str) {
        int count = 0;
        int idx = 0;
        while ((idx = str.indexOf(',', idx)) != -1) {
            count++;
            idx++;
        }
        return count;
    }