Added @Override
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1384 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
ab84ae957e
commit
efd346d579
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue