1 16 17 package org.apache.commons.io.output; 18 19 import java.io.IOException ; 20 import java.io.OutputStream ; 21 22 27 public class NullOutputStream extends OutputStream { 28 29 32 public synchronized void write(byte[] b, int off, int len) { 33 } 35 36 39 public synchronized void write(int b) { 40 } 42 43 46 public void write(byte[] b) throws IOException { 47 } 49 50 } 51 | Popular Tags |