mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-04 00:31:54 +00:00
init, thx MrExtremez
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov.
|
||||
// Jad home page: http://www.kpdus.com/jad.html
|
||||
// Decompiler options: packimports(3)
|
||||
|
||||
public class Node {
|
||||
|
||||
public final void unlink() {
|
||||
if (next == null) {
|
||||
} else {
|
||||
next.prev = prev;
|
||||
prev.next = next;
|
||||
prev = null;
|
||||
next = null;
|
||||
}
|
||||
}
|
||||
|
||||
public Node() {
|
||||
}
|
||||
|
||||
public long id;
|
||||
public Node prev;
|
||||
public Node next;
|
||||
}
|
||||
Reference in New Issue
Block a user