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,5 +1,4 @@
import java.lang.ref.SoftReference;
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
@@ -7,7 +6,6 @@ import net.runelite.mapping.ObfuscatedName;
@Implements("SoftWrapper")
public class SoftWrapper extends Wrapper {
@ObfuscatedName("z")
@Export("ref")
SoftReference ref;
SoftWrapper(Object var1, int var2) {
@@ -16,13 +14,11 @@ public class SoftWrapper extends Wrapper {
} // L: 12
@ObfuscatedName("z")
@Export("get")
Object get() {
return this.ref.get(); // L: 15
}
@ObfuscatedName("k")
@Export("isSoft")
boolean isSoft() {
return true; // L: 19
}