mirror of
https://github.com/2006-Scape/2006RebottedClient.git
synced 2026-07-03 00:31:48 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package org.rebotted.collection;
|
||||
|
||||
public class Linkable {
|
||||
|
||||
public long key;
|
||||
public Linkable previous;
|
||||
public Linkable next;
|
||||
|
||||
public final void unlink() {
|
||||
if (next == null) {
|
||||
} else {
|
||||
next.previous = previous;
|
||||
previous.next = next;
|
||||
previous = null;
|
||||
next = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user