mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 03:33:23 +00:00
15 lines
307 B
Java
15 lines
307 B
Java
package com.volmit.iris.util;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
import java.util.zip.GZIPOutputStream;
|
|
|
|
public class CustomOutputStream extends GZIPOutputStream
|
|
{
|
|
public CustomOutputStream(OutputStream out, int level) throws IOException
|
|
{
|
|
super(out);
|
|
def.setLevel(level);
|
|
}
|
|
}
|