project: Revvvvvvvvvvvvv
This commit is contained in:
@@ -4,45 +4,42 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("mn")
|
||||
@ObfuscatedName("mz")
|
||||
@Implements("AbstractUserComparator")
|
||||
public abstract class AbstractUserComparator implements Comparator {
|
||||
@ObfuscatedName("j")
|
||||
@Export("Interpreter_stringLocals")
|
||||
static String[] Interpreter_stringLocals;
|
||||
@ObfuscatedName("b")
|
||||
@ObfuscatedName("l")
|
||||
@Export("nextComparator")
|
||||
Comparator nextComparator;
|
||||
|
||||
protected AbstractUserComparator() {
|
||||
}
|
||||
} // L: 8
|
||||
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedName("a")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Ljava/util/Comparator;I)V",
|
||||
garbageValue = "-1995915904"
|
||||
garbageValue = "905237521"
|
||||
)
|
||||
@Export("addComparator")
|
||||
final void addComparator(Comparator var1) {
|
||||
if (this.nextComparator == null) {
|
||||
this.nextComparator = var1;
|
||||
} else if (this.nextComparator instanceof AbstractUserComparator) {
|
||||
((AbstractUserComparator)this.nextComparator).addComparator(var1);
|
||||
if (this.nextComparator == null) { // L: 11
|
||||
this.nextComparator = var1; // L: 12
|
||||
} else if (this.nextComparator instanceof AbstractUserComparator) { // L: 14
|
||||
((AbstractUserComparator)this.nextComparator).addComparator(var1); // L: 15
|
||||
}
|
||||
|
||||
}
|
||||
} // L: 17
|
||||
|
||||
@ObfuscatedName("w")
|
||||
@ObfuscatedName("y")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Lmv;Lmv;B)I",
|
||||
garbageValue = "-7"
|
||||
descriptor = "(Lmy;Lmy;S)I",
|
||||
garbageValue = "6806"
|
||||
)
|
||||
@Export("compareUser")
|
||||
protected final int compareUser(User var1, User var2) {
|
||||
return this.nextComparator == null ? 0 : this.nextComparator.compare(var1, var2);
|
||||
return this.nextComparator == null ? 0 : this.nextComparator.compare(var1, var2); // L: 20 21
|
||||
}
|
||||
|
||||
public boolean equals(Object var1) {
|
||||
return super.equals(var1);
|
||||
return super.equals(var1); // L: 25
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user