001package com.identityworksllc.iiq.common; 002 003import java.io.OutputStream; 004 005/** 006 * An output stream that quietly swallows the input 007 */ 008public class NullOutputStream extends OutputStream { 009 /** 010 * Yum, data 011 */ 012 @Override 013 public void write(int b) { 014 /* Do nothing */ 015 } 016}