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



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



