mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
12 lines
230 B
Java
12 lines
230 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
|
|
}
|
|
}
|