src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletResponseResultImpl.java [259:267]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void reset() {
        this.checkCommitted();
        this.cookies.clear();
        this.headerSupport.reset();
        this.status = HttpServletResponse.SC_OK;
        this.contentLength = -1L;
        this.statusMessage = null;
        this.resetBuffer();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/builder/impl/SlingJakartaHttpServletResponseResultImpl.java [248:256]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void reset() {
        this.checkCommitted();
        this.cookies.clear();
        this.headerSupport.reset();
        this.status = HttpServletResponse.SC_OK;
        this.contentLength = -1L;
        this.statusMessage = null;
        this.resetBuffer();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



