Added @Override

This commit is contained in:
Arjen Poutsma 2009-06-15 09:30:46 +00:00
parent 3504ba3374
commit c254924b4c
1 changed files with 3 additions and 0 deletions

View File

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