Skip to content

Commit bbc0b95

Browse files
committed
System Touch
1 parent f6eb902 commit bbc0b95

3 files changed

Lines changed: 492 additions & 463 deletions

File tree

source/Main.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import server.nitro.NitroWebExpress;
44
import server.nitro.modules.ConnectionStatusServer;
55
import server.nitro.modules.MySQLComponent;
6+
import server.nitro.modules.ModuleInstallationService;
67

78
/**
89
* @author Max Rupplin
@@ -49,7 +50,7 @@ public class Main
4950

5051
protected static final String CONNECTION_STATUS_SERVER_HOST = "localhost";
5152

52-
protected static final Integer MODULE_INSTALLER_SERVICE_PORT = NitroWebExpress.Aspect.ModuleInstallationService.PORT;
53+
protected static final Integer MODULE_INSTALLER_SERVICE_PORT = ModuleInstallationService.PORT;
5354

5455
protected static final String MODULE_INSTALLER_SERVICE_HOST = "localhost";
5556

@@ -126,7 +127,7 @@ public Main()
126127
NITRO.BRIDGE.CONNECTION_STATUS = new ConnectionStatusServer(CONNECTION_STATUS_SERVER_HOST, NITRO.CURRENT_CONNECTIONS, NITRO.PORT);
127128

128129
if (configuration.NweConfig.isEnabled("MODULE_INSTALLATION"))
129-
NITRO.BRIDGE.MODULE_INSTALLER_SERVICE = new NitroWebExpress.Aspect.ModuleInstallationService(MODULE_INSTALLER_SERVICE_HOST);
130+
NITRO.BRIDGE.MODULE_INSTALLER_SERVICE = new ModuleInstallationService(MODULE_INSTALLER_SERVICE_HOST);
130131

131132
if (configuration.NweConfig.isEnabled("ASCII_CREATOR"))
132133
NITRO.BRIDGE.ASCII_CREATOR_SERVER = new NitroWebExpress.Aspect.ASCIICreatorServer(ASCII_CREATOR_SERVER_HOST);

0 commit comments

Comments
 (0)