update client to rev 183
This commit is contained in:
@@ -3,18 +3,18 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("jf")
|
||||
@ObfuscatedName("jo")
|
||||
@Implements("LinkDeque")
|
||||
public class LinkDeque {
|
||||
@ObfuscatedName("s")
|
||||
@ObfuscatedName("c")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lfk;"
|
||||
signature = "Lfx;"
|
||||
)
|
||||
@Export("sentinel")
|
||||
Link sentinel;
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedName("x")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lfk;"
|
||||
signature = "Lfx;"
|
||||
)
|
||||
@Export("current")
|
||||
Link current;
|
||||
@@ -25,9 +25,9 @@ public class LinkDeque {
|
||||
this.sentinel.next = this.sentinel;
|
||||
}
|
||||
|
||||
@ObfuscatedName("s")
|
||||
@ObfuscatedName("c")
|
||||
@ObfuscatedSignature(
|
||||
signature = "(Lfk;)V"
|
||||
signature = "(Lfx;)V"
|
||||
)
|
||||
@Export("addFirst")
|
||||
public void addFirst(Link var1) {
|
||||
@@ -41,9 +41,9 @@ public class LinkDeque {
|
||||
var1.previous.next = var1;
|
||||
}
|
||||
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedName("x")
|
||||
@ObfuscatedSignature(
|
||||
signature = "()Lfk;"
|
||||
signature = "()Lfx;"
|
||||
)
|
||||
@Export("last")
|
||||
public Link last() {
|
||||
@@ -57,9 +57,9 @@ public class LinkDeque {
|
||||
}
|
||||
}
|
||||
|
||||
@ObfuscatedName("i")
|
||||
@ObfuscatedName("t")
|
||||
@ObfuscatedSignature(
|
||||
signature = "()Lfk;"
|
||||
signature = "()Lfx;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Link previous() {
|
||||
|
||||
Reference in New Issue
Block a user