src/main/java/org/apache/sling/commons/testing/integration/NameValuePairList.java [58:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        boolean found = false;
        for (ListIterator<NameValuePair> li = delegate.listIterator(); li.hasNext();) {
            NameValuePair current = li.next();
            if (current.getName().equals(name)) {
                found = true;
                break;
            }
        }

        if (!found) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/commons/testing/integration/NameValuePairList.java [107:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        boolean found = false;
        for (ListIterator<NameValuePair> li = delegate.listIterator(); li.hasNext();) {
            NameValuePair current = li.next();
            if (current.getName().equals(name)) {
                found = true;
                break;
            }
        }

        if (!found) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



