init, thx MrExtremez

This commit is contained in:
Nicola Paolucci
2019-06-18 15:04:35 -04:00
commit ea51313125
2488 changed files with 150207 additions and 0 deletions
+23
View File
@@ -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 NodeSub extends Node {
public final void unlinkSub() {
if (nextNodeSub == null) {
} else {
nextNodeSub.prevNodeSub = prevNodeSub;
prevNodeSub.nextNodeSub = nextNodeSub;
prevNodeSub = null;
nextNodeSub = null;
}
}
public NodeSub() {
}
public NodeSub prevNodeSub;
NodeSub nextNodeSub;
public static int anInt1305;
}