protected static int countOccurences()

in src/main/java/org/apache/sling/launchpad/webapp/integrationtest/JsonRenderingTest.java [193:201]


    protected static int countOccurences(String str, char toCount) {
        int result = 0;
        for (char c : str.toCharArray()) {
            if (c == toCount) {
                result++;
            }
        }
        return result;
    }