Changed argument order in constructor.
This commit is contained in:
parent
0a0f32e4ee
commit
cc29ebbaf4
1 changed files with 4 additions and 4 deletions
|
@ -50,17 +50,17 @@ public class ApplicationManager implements XmlRpcHandler {
|
||||||
/**
|
/**
|
||||||
* Creates a new ApplicationManager object.
|
* Creates a new ApplicationManager object.
|
||||||
*
|
*
|
||||||
* @param port The RMI port we're binding to
|
|
||||||
* @param hopHome The Helma home directory
|
* @param hopHome The Helma home directory
|
||||||
* @param props the properties defining the running apps
|
* @param props the properties defining the running apps
|
||||||
* @param server the server instance
|
* @param server the server instance
|
||||||
|
* @param port The RMI port we're binding to
|
||||||
*/
|
*/
|
||||||
public ApplicationManager(int port, File hopHome, SystemProperties props,
|
public ApplicationManager(File hopHome, SystemProperties props,
|
||||||
Server server) {
|
Server server, int port) {
|
||||||
this.port = port;
|
|
||||||
this.hopHome = hopHome;
|
this.hopHome = hopHome;
|
||||||
this.props = props;
|
this.props = props;
|
||||||
this.server = server;
|
this.server = server;
|
||||||
|
this.port = port;
|
||||||
descriptors = new Hashtable();
|
descriptors = new Hashtable();
|
||||||
applications = new Hashtable();
|
applications = new Hashtable();
|
||||||
xmlrpcHandlers = new Hashtable();
|
xmlrpcHandlers = new Hashtable();
|
||||||
|
|
Loading…
Add table
Reference in a new issue