X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fio%2FNullOutputStream.java;fp=src%2Forg%2Fibex%2Fio%2FNullOutputStream.java;h=fcae4b532948d339051a111b7cc9b1187772007b;hb=507eb0365a6b596e61b99e507126b4c197ebce11;hp=0000000000000000000000000000000000000000;hpb=6f7f893c243dd915524f89f8b7dc319122d7be7f;p=org.ibex.io.git diff --git a/src/org/ibex/io/NullOutputStream.java b/src/org/ibex/io/NullOutputStream.java new file mode 100644 index 0000000..fcae4b5 --- /dev/null +++ b/src/org/ibex/io/NullOutputStream.java @@ -0,0 +1,11 @@ +// Copyright 2007 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + +package org.ibex.io; +import java.io.*; + +public class NullOutputStream extends OutputStream { + public void write(int b) { } + public void write(byte[] b, int off, int len) { } +}