9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 12:09:07 +00:00
This commit is contained in:
Daniel Mills
2020-08-25 16:39:24 -04:00
parent 01fd89f60c
commit ff78830ead
21 changed files with 15882 additions and 6613 deletions

View File

@@ -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
{

View File

@@ -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);