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.ObfuscatedGetter;
import net.runelite.mapping.ObfuscatedName;
@@ -11,19 +10,16 @@ public class Buddy extends User {
@ObfuscatedGetter(
intValue = 1220284933
)
@Export("world")
public int world;
@ObfuscatedName("o")
@ObfuscatedGetter(
intValue = -224698591
)
@Export("int2")
public int int2;
@ObfuscatedName("x")
@ObfuscatedGetter(
intValue = -263202513
)
@Export("rank")
public int rank;
Buddy() {
@@ -35,7 +31,6 @@ public class Buddy extends User {
descriptor = "(III)V",
garbageValue = "-580421822"
)
@Export("set")
void set(int var1, int var2) {
this.world = var1; // L: 11
this.int2 = var2; // L: 12
@@ -46,7 +41,6 @@ public class Buddy extends User {
descriptor = "(I)I",
garbageValue = "-907221261"
)
@Export("getWorld")
public int getWorld() {
return this.world; // L: 16
}
@@ -56,7 +50,6 @@ public class Buddy extends User {
descriptor = "(S)Z",
garbageValue = "4837"
)
@Export("hasWorld")
public boolean hasWorld() {
return this.world > 0; // L: 20
}