in src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletResponseImpl.java [122:132]
public void setContentType(final String type) {
if (this.printWriter == null) {
final int pos = type == null ? -1 : type.indexOf(SlingHttpServletRequestImpl.CHARSET_SEPARATOR);
if (pos != -1) {
this.contentType = type.substring(0, pos);
this.characterEncoding = type.substring(pos + SlingHttpServletRequestImpl.CHARSET_SEPARATOR.length());
} else {
this.contentType = type;
}
}
}