@ -54,15 +54,18 @@ public class DelegatingServletOutputStream extends ServletOutputStream {
}
@Override
public void write(int b) throws IOException {
this.targetStream.write(b);
public void flush() throws IOException {
super.flush();
this.targetStream.flush();
public void close() throws IOException {
super.close();
this.targetStream.close();