chore: rev 193
This commit is contained in:
@@ -3,88 +3,87 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("km")
|
||||
@ObfuscatedName("ki")
|
||||
@Implements("Username")
|
||||
public class Username implements Comparable {
|
||||
@ObfuscatedName("dj")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lid;"
|
||||
)
|
||||
@Export("archive4")
|
||||
static Archive archive4;
|
||||
@ObfuscatedName("f")
|
||||
@ObfuscatedName("j")
|
||||
@Export("Interpreter_stringLocals")
|
||||
static String[] Interpreter_stringLocals;
|
||||
@ObfuscatedName("n")
|
||||
static byte[][][] field3663;
|
||||
@ObfuscatedName("h")
|
||||
@Export("name")
|
||||
String name;
|
||||
@ObfuscatedName("b")
|
||||
@ObfuscatedName("v")
|
||||
@Export("cleanName")
|
||||
String cleanName;
|
||||
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Ljava/lang/String;Lmc;)V"
|
||||
descriptor = "(Ljava/lang/String;Lmu;)V"
|
||||
)
|
||||
public Username(String var1, LoginType var2) {
|
||||
this.name = var1; // L: 11
|
||||
this.cleanName = class323.method6048(var1, var2); // L: 12
|
||||
} // L: 13
|
||||
this.name = var1;
|
||||
this.cleanName = VarbitDefinition.method4525(var1, var2);
|
||||
}
|
||||
|
||||
@ObfuscatedName("f")
|
||||
@ObfuscatedName("h")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(I)Ljava/lang/String;",
|
||||
garbageValue = "-1362272434"
|
||||
garbageValue = "-1189841453"
|
||||
)
|
||||
@Export("getName")
|
||||
public String getName() {
|
||||
return this.name; // L: 16
|
||||
return this.name;
|
||||
}
|
||||
|
||||
@ObfuscatedName("b")
|
||||
@ObfuscatedName("v")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(I)Z",
|
||||
garbageValue = "2074107082"
|
||||
descriptor = "(B)Z",
|
||||
garbageValue = "-4"
|
||||
)
|
||||
@Export("hasCleanName")
|
||||
public boolean hasCleanName() {
|
||||
return this.cleanName != null; // L: 20
|
||||
return this.cleanName != null;
|
||||
}
|
||||
|
||||
@ObfuscatedName("l")
|
||||
@ObfuscatedName("x")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Lkm;I)I",
|
||||
garbageValue = "1900855669"
|
||||
descriptor = "(Lki;I)I",
|
||||
garbageValue = "-1152802722"
|
||||
)
|
||||
@Export("compareToTyped")
|
||||
public int compareToTyped(Username var1) {
|
||||
if (this.cleanName == null) { // L: 44
|
||||
return var1.cleanName == null ? 0 : 1; // L: 45 46
|
||||
if (this.cleanName == null) {
|
||||
return var1.cleanName == null ? 0 : 1;
|
||||
} else {
|
||||
return var1.cleanName == null ? -1 : this.cleanName.compareTo(var1.cleanName); // L: 48 49
|
||||
return var1.cleanName == null ? -1 : this.cleanName.compareTo(var1.cleanName);
|
||||
}
|
||||
}
|
||||
|
||||
public boolean equals(Object var1) {
|
||||
if (var1 instanceof Username) { // L: 24
|
||||
Username var2 = (Username)var1; // L: 25
|
||||
if (var1 instanceof Username) {
|
||||
Username var2 = (Username)var1;
|
||||
if (this.cleanName == null) {
|
||||
return var2.cleanName == null; // L: 26
|
||||
} else if (var2.cleanName == null) { // L: 27
|
||||
return var2.cleanName == null;
|
||||
} else if (var2.cleanName == null) {
|
||||
return false;
|
||||
} else {
|
||||
return this.hashCode() != var2.hashCode() ? false : this.cleanName.equals(var2.cleanName); // L: 28 29
|
||||
return this.hashCode() != var2.hashCode() ? false : this.cleanName.equals(var2.cleanName);
|
||||
}
|
||||
} else {
|
||||
return false; // L: 31
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.cleanName == null ? 0 : this.cleanName.hashCode(); // L: 35 36
|
||||
return this.cleanName == null ? 0 : this.cleanName.hashCode();
|
||||
}
|
||||
|
||||
public int compareTo(Object var1) {
|
||||
return this.compareToTyped((Username)var1); // L: 53
|
||||
return this.compareToTyped((Username)var1);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return this.getName(); // L: 40
|
||||
return this.getName();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user