1 12 package org.eclipse.jdt.apt.core.internal.env; 13 14 import java.io.IOException ; 15 import java.io.OutputStream ; 16 17 20 public class NoOpOutputStream extends OutputStream { 21 22 public NoOpOutputStream() { 23 super(); 24 } 25 26 @Override  27 public void write(byte[] b, int off, int len) throws IOException { 28 } 29 30 @Override  31 public void write(byte[] b) throws IOException { 32 } 33 34 @Override  35 public void write(int b) throws IOException { 36 } 37 } 38 | Popular Tags |