Skip to content

Commit db616b7

Browse files
committed
System Touch
1 parent 53f39f9 commit db616b7

2 files changed

Lines changed: 4 additions & 12 deletions

File tree

source/Main.java

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import commons.CommonRails;
2-
import commons.InternationalCommonRails;
32
import national.NationalDriver;
43
import server.nitro.NitroWebExpress;
54

@@ -54,18 +53,11 @@ public Main()
5453

5554
CommonRails.printSystemComponent(this, this.hashCode(),". National NitroExpress™ Web Engine Starting .");
5655

57-
try
58-
{
59-
NationalDriver driver = new NationalDriver();
56+
NationalDriver driver = new NationalDriver();
6057

61-
driver.printCorrectedOrder();
58+
driver.printOrderedComponents();
6259

63-
driver.clear();
64-
}
65-
catch (Throwable t)
66-
{
67-
t.printStackTrace(System.err);
68-
}
60+
driver.clear();
6961

7062
NitroWebExpress nitro = new NitroWebExpress(Main.WEBEXPRESS_PORT, Main.WEBEXPRESS_HOSTNAME, Main.WEB_EXPRESS_SERVER_THREADNAME);
7163

source/national/NationalDriver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static synchronized List<String> getGroupNames()
5959
return GROUP_NAMES;
6060
}
6161

62-
public synchronized void printCorrectedOrder()
62+
public synchronized void printOrderedComponents()
6363
{
6464
class Entry { String ref; long ts; int idx; String className; Entry(String r,long t,int i,String cn){ref=r;ts=t;idx=i;className=cn;} }
6565

0 commit comments

Comments
 (0)