in src/main/java/org/apache/sling/scripting/xproc/cocoon/generator/SlingGeneratorServletResponse.java [44:50]
public PrintWriter getWriter() throws IOException {
if (this.hasOutputStream) {
throw new IllegalStateException("getOutputStream was already called.");
}
this.hasWriter = true;
return this.output.getWriter();
}