Skip to content

Commit 47e7700

Browse files
committed
System Touch
1 parent 860bad5 commit 47e7700

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

source/server/base/BaseServer.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212

1313
public abstract class BaseServer extends Thread
1414
{
15-
public Integer hash = 0x008808FF;
15+
public Integer HASH = 0x008808FF;
1616

17-
public BaseServer INHERITOR;
17+
public BaseServer SUPERCLASS;
18+
19+
public BaseServer SELF;
1820
public static final Integer BASE_CONNECTION_TIMEOUT = 43200 * 2 * 2 * 1000;
1921

2022
public String HOST = "localhost";
@@ -36,7 +38,7 @@ public abstract class BaseServer extends Thread
3638

3739
public BaseServer()
3840
{
39-
System.out.println(this.hash);
41+
System.out.println(this.HASH);
4042
}
4143

4244
public BaseServer(String host, Integer PORT)
@@ -47,7 +49,9 @@ public BaseServer(String host, Integer PORT)
4749

4850
this.PORT = PORT;
4951

50-
this.INHERITOR = this;
52+
this.SUPERCLASS = this;
53+
54+
this.SELF = this;
5155

5256
this.setName("BasicServer");
5357

source/server/nitro/WebExpress.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class WebExpress extends BaseServer
3535

3636
public WebExpress WEBEXPRESS;
3737

38+
public BaseServer BASESERVER;
39+
3840
public WebExpress()
3941
{
4042
this.setName("United States D500 WebExpress");
@@ -46,7 +48,9 @@ public WebExpress(final String HOST, final Integer PORT, final String THREAD_NAM
4648

4749
super(HOST, PORT);
4850

49-
this.INHERITOR = this;
51+
this.BASESERVER = this.SELF;
52+
53+
this.SUPERCLASS = this;
5054

5155
this.THREAD_NAME = THREAD_NAME;
5256

0 commit comments

Comments
 (0)