1 28 29 package com.caucho.util; 30 31 import java.io.IOException ; 32 import java.io.OutputStream ; 33 34 37 public class NullOutputStream extends OutputStream { 38 public void write(int b) 39 throws IOException  40 { 41 } 42 43 public void write(byte[] buffer) 44 throws IOException  45 { 46 } 47 48 public void write(byte[] buffer, int offset, int length) 49 throws IOException  50 { 51 } 52 53 public void flush() 54 throws IOException  55 { 56 } 57 58 public void close() 59 throws IOException  60 { 61 } 62 } 63 | Popular Tags |