Fixed constructor issue with StubbedSimControlApplication

This commit is contained in:
Marcus Rockwell 2024-10-02 16:11:17 -04:00
parent 671b7dc065
commit 90feb68a5f

View File

@ -35,7 +35,8 @@ public class StubbedSimControlApplication extends SimControlApplication {
}
public StubbedSimControlApplication(String hostname, int portNum) {
super.setHostPort(hostname, portNum);
host = hostname;
port = portNum;
actionController = new SimControlActionController();
ActionRecord = new Stack<ActionID>();