rs-client: remove Export annotations
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import net.runelite.mapping.Export;
|
||||
import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
@@ -10,13 +9,11 @@ public class ClanMate extends Buddy {
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lkm;"
|
||||
)
|
||||
@Export("friend")
|
||||
TriBool friend;
|
||||
@ObfuscatedName("k")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lkm;"
|
||||
)
|
||||
@Export("ignored")
|
||||
TriBool ignored;
|
||||
|
||||
ClanMate() {
|
||||
@@ -29,7 +26,6 @@ public class ClanMate extends Buddy {
|
||||
descriptor = "(I)V",
|
||||
garbageValue = "-1483080876"
|
||||
)
|
||||
@Export("clearIsFriend")
|
||||
void clearIsFriend() {
|
||||
this.friend = TriBool.TriBool_unknown; // L: 12
|
||||
} // L: 13
|
||||
@@ -39,7 +35,6 @@ public class ClanMate extends Buddy {
|
||||
descriptor = "(I)Z",
|
||||
garbageValue = "2093407981"
|
||||
)
|
||||
@Export("isFriend")
|
||||
public final boolean isFriend() {
|
||||
if (this.friend == TriBool.TriBool_unknown) { // L: 16
|
||||
this.fillIsFriend(); // L: 17
|
||||
@@ -53,7 +48,6 @@ public class ClanMate extends Buddy {
|
||||
descriptor = "(I)V",
|
||||
garbageValue = "-2130404233"
|
||||
)
|
||||
@Export("fillIsFriend")
|
||||
void fillIsFriend() {
|
||||
this.friend = class60.friendSystem.friendsList.contains(super.username) ? TriBool.TriBool_true : TriBool.TriBool_false; // L: 23
|
||||
} // L: 24
|
||||
@@ -63,7 +57,6 @@ public class ClanMate extends Buddy {
|
||||
descriptor = "(I)V",
|
||||
garbageValue = "405113093"
|
||||
)
|
||||
@Export("clearIsIgnored")
|
||||
void clearIsIgnored() {
|
||||
this.ignored = TriBool.TriBool_unknown; // L: 27
|
||||
} // L: 28
|
||||
@@ -73,7 +66,6 @@ public class ClanMate extends Buddy {
|
||||
descriptor = "(I)Z",
|
||||
garbageValue = "-607786293"
|
||||
)
|
||||
@Export("isIgnored")
|
||||
public final boolean isIgnored() {
|
||||
if (this.ignored == TriBool.TriBool_unknown) { // L: 31
|
||||
this.fillIsIgnored(); // L: 32
|
||||
@@ -87,7 +79,6 @@ public class ClanMate extends Buddy {
|
||||
descriptor = "(I)V",
|
||||
garbageValue = "-483165617"
|
||||
)
|
||||
@Export("fillIsIgnored")
|
||||
void fillIsIgnored() {
|
||||
this.ignored = class60.friendSystem.ignoreList.contains(super.username) ? TriBool.TriBool_true : TriBool.TriBool_false; // L: 38
|
||||
} // L: 39
|
||||
|
||||
Reference in New Issue
Block a user