Removed unused mixin

This commit is contained in:
Cloudburst
2021-06-12 19:34:29 +02:00
parent 03f86527c5
commit 0ca7ec87dd
2 changed files with 0 additions and 22 deletions

View File

@@ -1,21 +0,0 @@
package cloudburst.rejects.mixin.meteor;
import minegame159.meteorclient.utils.network.Capes;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Accessor;
import java.util.*;
@Mixin(Capes.class)
public interface CapesAccessor {
@Accessor("OWNERS")
public static Map<UUID, String> getOwners() {
throw new AssertionError();
}
@Accessor("URLS")
public static Map<String, String> getURLs() {
throw new AssertionError();
}
}

View File

@@ -4,7 +4,6 @@
"compatibilityLevel": "JAVA_16",
"mixins": [ ],
"client": [
"CapesAccessor",
"GuiRendererAccessor"
]
}