mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-06 07:46:08 +00:00
Worlds
This commit is contained in:
13
src/main/java/com/volmit/iris/util/VoidOutputStream.java
Normal file
13
src/main/java/com/volmit/iris/util/VoidOutputStream.java
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user