Skip to content

Commit ffdb4d4

Browse files
committed
System Touch
1 parent d99e501 commit ffdb4d4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

source/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public Main()
9090

9191
NITRO.BRIDGE.CONNECTION_STATUS = new NitroWebExpress.Aspect.ConnectionStatusServer(CONNECTION_STATUS_SERVER_HOST, NITRO.CURRENT_CONNECTIONS, NITRO.PORT);
9292

93-
NITRO.BRIDGE.MODULE_INSTALLATION = new NitroWebExpress.Aspect.ModuleInstallationService("localhost");
93+
NITRO.BRIDGE.MODULE_INSTALLER_SERVICE = new NitroWebExpress.Aspect.ModuleInstallationService("localhost");
9494

9595
NITRO.BRIDGE.MYSQL_COMPONENT = new NitroWebExpress.Aspect.MySQLComponent();
9696

source/server/nitro/NitroWebExpress.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ public static class Aspect
9393

9494
public MySQLComponent MYSQL_COMPONENT = new MySQLComponent();
9595

96-
public ModuleInstallationService MODULE_INSTALLATION;
96+
public ModuleInstallationService MODULE_INSTALLER_SERVICE;
9797

9898
/** Start CONNECTION_STATUS and NitroWebExpress.SELF together. */
9999
public void start()
100100
{
101101
if (CONNECTION_STATUS != null) CONNECTION_STATUS.start();
102-
if (MODULE_INSTALLATION != null) MODULE_INSTALLATION.start();
102+
if (MODULE_INSTALLER_SERVICE != null) MODULE_INSTALLER_SERVICE.start();
103103
if (NitroWebExpress.SELF != null) NitroWebExpress.SELF.start();
104104
}
105105

0 commit comments

Comments
 (0)