private void computeAll()

in src/main/java/org/apache/sling/graphql/helpers/lazyloading/LazyLoadingMap.java [159:168]


    private void computeAll() {
        if(forbidComputeAll) {
            throw new RuntimeException("The computeAll() method has been disabled by the computeAllThrowsException option");
        }
        if(!suppliers.isEmpty()) {
            log.debug("computeAll called, all remaining lazy values will be evaluated now");
            final Set<K> keys = new HashSet<>(suppliers.keySet());
            keys.forEach(this::get);
        }
    }