client: rev 198 (#3014)

* client: rev 198

* client: checkstyle

Co-authored-by: therealnull <therealnull@gmail.com>
This commit is contained in:
Tyler Bochard
2021-07-28 07:24:38 -04:00
committed by GitHub
parent c2af17f765
commit 56ae122b89
466 changed files with 65937 additions and 65851 deletions

View File

@@ -3,34 +3,34 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("lu")
@ObfuscatedName("li")
@Implements("TriBool")
public class TriBool {
@ObfuscatedName("f")
@ObfuscatedName("s")
@ObfuscatedSignature(
descriptor = "Llu;"
descriptor = "Lli;"
)
@Export("TriBool_unknown")
public static final TriBool TriBool_unknown;
@ObfuscatedName("e")
@ObfuscatedName("t")
@ObfuscatedSignature(
descriptor = "Llu;"
descriptor = "Lli;"
)
@Export("TriBool_true")
public static final TriBool TriBool_true;
@ObfuscatedName("v")
@ObfuscatedSignature(
descriptor = "Llu;"
descriptor = "Lli;"
)
@Export("TriBool_false")
public static final TriBool TriBool_false;
static {
TriBool_unknown = new TriBool(); // L: 4
TriBool_true = new TriBool(); // L: 5
TriBool_false = new TriBool(); // L: 6
TriBool_unknown = new TriBool();
TriBool_true = new TriBool();
TriBool_false = new TriBool();
}
TriBool() {
} // L: 8
}
}