client: rev 198 (#3014)
* client: rev 198 * client: checkstyle Co-authored-by: therealnull <therealnull@gmail.com>
This commit is contained in:
@@ -3,30 +3,30 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("mr")
|
||||
@ObfuscatedName("mf")
|
||||
@Implements("Link")
|
||||
public class Link {
|
||||
@ObfuscatedName("y")
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmr;"
|
||||
descriptor = "Lmf;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Link previous;
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedName("l")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmr;"
|
||||
descriptor = "Lmf;"
|
||||
)
|
||||
@Export("next")
|
||||
public Link next;
|
||||
|
||||
@ObfuscatedName("f")
|
||||
@ObfuscatedName("s")
|
||||
@Export("remove")
|
||||
public void remove() {
|
||||
if (this.next != null) { // L: 8
|
||||
this.next.previous = this.previous; // L: 9
|
||||
this.previous.next = this.next; // L: 10
|
||||
this.previous = null; // L: 11
|
||||
this.next = null; // L: 12
|
||||
if (this.next != null) {
|
||||
this.next.previous = this.previous;
|
||||
this.previous.next = this.next;
|
||||
this.previous = null;
|
||||
this.next = null;
|
||||
}
|
||||
} // L: 13
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user