public boolean hasPendingChanges()

in src/main/java/org/apache/sling/testing/mock/jcr/MockSession.java [275:289]


    public boolean hasPendingChanges() throws RepositoryException {
        checkLive();

        if (hasKnownChanges) {
            return true;
        }

        for (final ItemData item : this.items.values()) {
            if (item.isNew() || item.isChanged()) {
                return true;
            }
        }

        return false;
    }