This commit is contained in:
Daniel Mills
2020-08-01 12:16:42 -04:00
parent 92e7ac7f20
commit ea3e7f9ace
6 changed files with 182 additions and 102 deletions

View File

@@ -0,0 +1,13 @@
package com.volmit.iris.util;
import java.io.IOException;
import java.io.OutputStream;
public class VoidOutputStream extends OutputStream
{
@Override
public void write(int b) throws IOException
{
// poof
}
}