mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-29 12:09:07 +00:00
WORKING
This commit is contained in:
@@ -7,7 +7,7 @@ import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RUNTIME)
|
||||
@Target({FIELD, TYPE})
|
||||
@Target({FIELD, TYPE, CONSTRUCTOR})
|
||||
public @interface DontObfuscate
|
||||
{
|
||||
|
||||
|
||||
@@ -20,6 +20,7 @@ public abstract class IrisPostBlockFilter implements IPostBlockAccess
|
||||
private String key;
|
||||
private KList<Runnable> queue = new KList<>();
|
||||
|
||||
@DontObfuscate
|
||||
public IrisPostBlockFilter(PostBlockChunkGenerator gen, int phase)
|
||||
{
|
||||
this.gen = gen;
|
||||
@@ -28,6 +29,7 @@ public abstract class IrisPostBlockFilter implements IPostBlockAccess
|
||||
key = getClass().getDeclaredAnnotation(Post.class).value();
|
||||
}
|
||||
|
||||
@DontObfuscate
|
||||
public IrisPostBlockFilter(PostBlockChunkGenerator gen)
|
||||
{
|
||||
this(gen, 0);
|
||||
|
||||
Reference in New Issue
Block a user