rs-client: remove Export annotations

This commit is contained in:
therealnull
2020-10-04 20:53:17 -04:00
parent 74f628c10c
commit 19859b66ae
322 changed files with 64 additions and 3704 deletions

View File

@@ -1,4 +1,3 @@
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
@@ -6,7 +5,6 @@ import net.runelite.mapping.ObfuscatedName;
@Implements("DirectWrapper")
public class DirectWrapper extends Wrapper {
@ObfuscatedName("z")
@Export("obj")
Object obj;
DirectWrapper(Object var1, int var2) {
@@ -15,13 +13,11 @@ public class DirectWrapper extends Wrapper {
} // L: 9
@ObfuscatedName("z")
@Export("get")
Object get() {
return this.obj; // L: 12
}
@ObfuscatedName("k")
@Export("isSoft")
boolean isSoft() {
return false; // L: 16
}