src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletRequestBuilderImpl.java [391:400]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (this.progressTracker == null) {
            // if attributes are shared with a Sling request, then the progress tracker is available from there
            final Object attrTracker = req.getAttribute(RequestProgressTracker.class.getName());
            if (attrTracker instanceof RequestProgressTracker) {
                this.progressTracker = (RequestProgressTracker) attrTracker;
            } else {
                this.progressTracker = Builders.newRequestProgressTracker();
            }
        }
        return req;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletRequestBuilderImpl.java [424:433]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (this.progressTracker == null) {
            // if attributes are shared with a Sling request, then the progress tracker is available from there
            final Object attrTracker = req.getAttribute(RequestProgressTracker.class.getName());
            if (attrTracker instanceof RequestProgressTracker) {
                this.progressTracker = (RequestProgressTracker) attrTracker;
            } else {
                this.progressTracker = Builders.newRequestProgressTracker();
            }
        }
        return req;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



