Merge remote-tracking branch 'upstream/master' into master
Nice insider info btw, be nice if you shared it, so-called "open source" client.
This commit is contained in:
@@ -5,20 +5,20 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("ko")
|
||||
@ObfuscatedName("ki")
|
||||
@Implements("IterableNodeDeque")
|
||||
public class IterableNodeDeque implements Iterable, Collection {
|
||||
@ObfuscatedName("h")
|
||||
@ObfuscatedName("v")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmd;"
|
||||
descriptor = "Lmw;"
|
||||
)
|
||||
@Export("sentinel")
|
||||
Node sentinel;
|
||||
@ObfuscatedName("c")
|
||||
@ObfuscatedName("n")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmd;"
|
||||
descriptor = "Lmw;"
|
||||
)
|
||||
Node field3734;
|
||||
Node field3709;
|
||||
|
||||
public IterableNodeDeque() {
|
||||
this.sentinel = new Node(); // L: 7
|
||||
@@ -26,7 +26,7 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
this.sentinel.next = this.sentinel; // L: 12
|
||||
} // L: 13
|
||||
|
||||
@ObfuscatedName("h")
|
||||
@ObfuscatedName("v")
|
||||
@Export("rsClear")
|
||||
public void rsClear() {
|
||||
while (this.sentinel.previous != this.sentinel) { // L: 16
|
||||
@@ -35,9 +35,9 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
|
||||
} // L: 19
|
||||
|
||||
@ObfuscatedName("c")
|
||||
@ObfuscatedName("n")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Lmd;)V"
|
||||
descriptor = "(Lmw;)V"
|
||||
)
|
||||
@Export("addFirst")
|
||||
public void addFirst(Node var1) {
|
||||
@@ -51,9 +51,9 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
var1.previous.next = var1; // L: 26
|
||||
} // L: 27
|
||||
|
||||
@ObfuscatedName("o")
|
||||
@ObfuscatedName("f")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Lmd;)V"
|
||||
descriptor = "(Lmw;)V"
|
||||
)
|
||||
@Export("addLast")
|
||||
public void addLast(Node var1) {
|
||||
@@ -67,20 +67,20 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
var1.previous.next = var1; // L: 34
|
||||
} // L: 35
|
||||
|
||||
@ObfuscatedName("l")
|
||||
@ObfuscatedName("p")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "()Lmd;"
|
||||
descriptor = "()Lmw;"
|
||||
)
|
||||
@Export("last")
|
||||
public Node last() {
|
||||
return this.method5146((Node)null); // L: 46
|
||||
return this.method5233((Node)null); // L: 46
|
||||
}
|
||||
|
||||
@ObfuscatedName("z")
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Lmd;)Lmd;"
|
||||
descriptor = "(Lmw;)Lmw;"
|
||||
)
|
||||
Node method5146(Node var1) {
|
||||
Node method5233(Node var1) {
|
||||
Node var2;
|
||||
if (var1 == null) { // L: 51
|
||||
var2 = this.sentinel.previous;
|
||||
@@ -89,32 +89,32 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
}
|
||||
|
||||
if (var2 == this.sentinel) { // L: 53
|
||||
this.field3734 = null; // L: 54
|
||||
this.field3709 = null; // L: 54
|
||||
return null; // L: 55
|
||||
} else {
|
||||
this.field3734 = var2.previous; // L: 57
|
||||
this.field3709 = var2.previous; // L: 57
|
||||
return var2; // L: 58
|
||||
}
|
||||
}
|
||||
|
||||
@ObfuscatedName("t")
|
||||
@ObfuscatedName("r")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "()Lmd;"
|
||||
descriptor = "()Lmw;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous() {
|
||||
Node var1 = this.field3734; // L: 62
|
||||
Node var1 = this.field3709; // L: 62
|
||||
if (var1 == this.sentinel) { // L: 63
|
||||
this.field3734 = null; // L: 64
|
||||
this.field3709 = null; // L: 64
|
||||
return null; // L: 65
|
||||
} else {
|
||||
this.field3734 = var1.previous; // L: 67
|
||||
this.field3709 = var1.previous; // L: 67
|
||||
return var1; // L: 68
|
||||
}
|
||||
}
|
||||
|
||||
@ObfuscatedName("v")
|
||||
int method5148() {
|
||||
@ObfuscatedName("b")
|
||||
int method5235() {
|
||||
int var1 = 0; // L: 72
|
||||
|
||||
for (Node var2 = this.sentinel.previous; var2 != this.sentinel; var2 = var2.previous) { // L: 73 74 76
|
||||
@@ -124,17 +124,17 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
return var1; // L: 78
|
||||
}
|
||||
|
||||
@ObfuscatedName("b")
|
||||
public boolean method5149() {
|
||||
@ObfuscatedName("d")
|
||||
public boolean method5236() {
|
||||
return this.sentinel.previous == this.sentinel; // L: 82
|
||||
}
|
||||
|
||||
@ObfuscatedName("q")
|
||||
@ObfuscatedName("s")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "()[Lmd;"
|
||||
descriptor = "()[Lmw;"
|
||||
)
|
||||
Node[] method5166() {
|
||||
Node[] var1 = new Node[this.method5148()]; // L: 86
|
||||
Node[] method5240() {
|
||||
Node[] var1 = new Node[this.method5235()]; // L: 86
|
||||
int var2 = 0; // L: 87
|
||||
|
||||
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 88 89 91
|
||||
@@ -144,29 +144,39 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
return var1; // L: 93
|
||||
}
|
||||
|
||||
@ObfuscatedName("i")
|
||||
@ObfuscatedName("u")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Lmd;)Z"
|
||||
descriptor = "(Lmw;)Z"
|
||||
)
|
||||
boolean method5170(Node var1) {
|
||||
boolean method5239(Node var1) {
|
||||
this.addFirst(var1); // L: 127
|
||||
return true; // L: 128
|
||||
}
|
||||
|
||||
public boolean removeAll(Collection var1) {
|
||||
throw new RuntimeException(); // L: 144
|
||||
}
|
||||
|
||||
public Iterator iterator() {
|
||||
return new IterableNodeDequeDescendingIterator(this); // L: 97
|
||||
}
|
||||
|
||||
public boolean add(Object var1) {
|
||||
return this.method5170((Node)var1); // L: 156
|
||||
}
|
||||
|
||||
public boolean isEmpty() {
|
||||
return this.method5149(); // L: 105
|
||||
return this.method5236(); // L: 105
|
||||
}
|
||||
|
||||
public boolean contains(Object var1) {
|
||||
throw new RuntimeException(); // L: 109
|
||||
public Object[] toArray() {
|
||||
return this.method5240(); // L: 113
|
||||
}
|
||||
|
||||
public Object[] toArray(Object[] var1) {
|
||||
int var2 = 0; // L: 117
|
||||
|
||||
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 118 119 121
|
||||
var1[var2++] = var3; // L: 120
|
||||
}
|
||||
|
||||
return var1; // L: 123
|
||||
}
|
||||
|
||||
public boolean remove(Object var1) {
|
||||
@@ -181,15 +191,9 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
throw new RuntimeException(); // L: 148
|
||||
}
|
||||
|
||||
public Object[] toArray(Object[] var1) {
|
||||
int var2 = 0; // L: 117
|
||||
|
||||
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 118 119 121
|
||||
var1[var2++] = var3; // L: 120
|
||||
}
|
||||
|
||||
return var1; // L: 123
|
||||
}
|
||||
public void clear() {
|
||||
this.rsClear(); // L: 152
|
||||
} // L: 153
|
||||
|
||||
public boolean equals(Object var1) {
|
||||
return super.equals(var1); // L: 160
|
||||
@@ -199,29 +203,25 @@ public class IterableNodeDeque implements Iterable, Collection {
|
||||
return super.hashCode(); // L: 164
|
||||
}
|
||||
|
||||
public Object[] toArray() {
|
||||
return this.method5166(); // L: 113
|
||||
public boolean add(Object var1) {
|
||||
return this.method5239((Node)var1); // L: 156
|
||||
}
|
||||
|
||||
public int size() {
|
||||
return this.method5235(); // L: 101
|
||||
}
|
||||
|
||||
public boolean contains(Object var1) {
|
||||
throw new RuntimeException(); // L: 109
|
||||
}
|
||||
|
||||
public boolean addAll(Collection var1) {
|
||||
throw new RuntimeException(); // L: 140
|
||||
}
|
||||
|
||||
public boolean removeAll(Collection var1) {
|
||||
throw new RuntimeException(); // L: 144
|
||||
}
|
||||
|
||||
public int size() {
|
||||
return this.method5148(); // L: 101
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
this.rsClear(); // L: 152
|
||||
} // L: 153
|
||||
|
||||
@ObfuscatedName("g")
|
||||
@ObfuscatedName("y")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Lmd;Lmd;)V"
|
||||
descriptor = "(Lmw;Lmw;)V"
|
||||
)
|
||||
@Export("IterableNodeDeque_addBefore")
|
||||
public static void IterableNodeDeque_addBefore(Node var0, Node var1) {
|
||||
|
||||
Reference in New Issue
Block a user