1 package org.ozoneDB.io.stream; 9 10 import java.io.OutputStream ; 11 12 17 public class NullOutputStream extends OutputStream { 18 19 protected final static NullOutputStream default0 = new NullOutputStream(); 20 21 24 public static NullOutputStream getDefault() { 25 return default0; 26 } 27 28 31 public NullOutputStream() { 32 } 33 34 37 public void write(int b) { 38 } 39 40 43 public void write(byte b[],int off,int len) { 44 } 45 46 } | Popular Tags |