src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletResponseResultImpl.java [97:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getContentType() {
        if (this.contentType == null) {
            return null;
        } else if (this.characterEncoding == null) {
            return this.contentType;
        }
        return this.contentType
                .concat(SlingHttpServletRequestBuilderImpl.CHARSET_SEPARATOR)
                .concat(this.characterEncoding);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/builder/impl/SlingJakartaHttpServletResponseResultImpl.java [95:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getContentType() {
        if (this.contentType == null) {
            return null;
        } else if (this.characterEncoding == null) {
            return this.contentType;
        }
        return this.contentType
                .concat(SlingHttpServletRequestBuilderImpl.CHARSET_SEPARATOR)
                .concat(this.characterEncoding);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



