mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-20 11:14:35 +00:00
14 lines
217 B
Java
14 lines
217 B
Java
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
|
|
}
|
|
}
|