project: Rev 202

This commit is contained in:
Owain van Brakel
2021-12-14 18:20:58 +01:00
parent e974585ce8
commit 7c7bf0901a
406 changed files with 39725 additions and 39842 deletions

View File

@@ -22,11 +22,11 @@ public class Link {
@ObfuscatedName("c")
@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
}
}