src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletRequestImpl.java [624:632]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.characterEncoding = encoding;
    }

    @Override
    public String getContentType() {
        if (this.contentType == null) {
            return null;
        } else if ( this.characterEncoding == null ) {
            return this.contentType;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletResponseImpl.java [108:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.characterEncoding = encoding;
    }

    @Override
    public String getContentType() {
        if (this.contentType == null) {
            return null;
        } else if ( this.characterEncoding == null ) {
            return this.contentType;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



