src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletRequestBuilderImpl.java [372:388]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.checkLocked();
        this.locked = true;

        this.requestPathInfo = SlingUriBuilder.createFrom(this.resource)
                .setExtension(this.extension)
                .setSuffix(this.suffix)
                .setSelectors(this.selectors)
                .build();

        this.queryString = this.formatQueryString();
        this.pathInfo = this.buildPathInfo();

        if (this.servletContext == null) {
            this.servletContext = new ServletContextImpl();
        }
        if (this.body == null) {
            this.body = "";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletRequestBuilderImpl.java [405:421]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.checkLocked();
        this.locked = true;

        this.requestPathInfo = SlingUriBuilder.createFrom(this.resource)
                .setExtension(this.extension)
                .setSuffix(this.suffix)
                .setSelectors(this.selectors)
                .build();

        this.queryString = this.formatQueryString();
        this.pathInfo = this.buildPathInfo();

        if (this.servletContext == null) {
            this.servletContext = new ServletContextImpl();
        }
        if (this.body == null) {
            this.body = "";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



