01: package vicazh.hyperpool.stream.net.http;
02:
03: import java.io.*;
04: import vicazh.hyperpool.stream.net.Stream;
05:
06: class ContentHeadNullStream extends Stream {
07:
08: ContentHeadNullStream(OutputStream outputstream) {
09: super (null, outputstream);
10: }
11:
12: public void close() throws IOException {
13: }
14:
15: public void write(int b) throws IOException {
16: }
17:
18: public void flush() throws IOException {
19: }
20:
21: }
|