From cc29ebbaf403b89ce82da01c6939393aa5a86b33 Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 7 Jul 2003 15:19:31 +0000 Subject: [PATCH] Changed argument order in constructor. --- src/helma/main/ApplicationManager.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/helma/main/ApplicationManager.java b/src/helma/main/ApplicationManager.java index aaf94a47..87ebbde2 100644 --- a/src/helma/main/ApplicationManager.java +++ b/src/helma/main/ApplicationManager.java @@ -50,17 +50,17 @@ public class ApplicationManager implements XmlRpcHandler { /** * Creates a new ApplicationManager object. * - * @param port The RMI port we're binding to * @param hopHome The Helma home directory * @param props the properties defining the running apps * @param server the server instance + * @param port The RMI port we're binding to */ - public ApplicationManager(int port, File hopHome, SystemProperties props, - Server server) { - this.port = port; + public ApplicationManager(File hopHome, SystemProperties props, + Server server, int port) { this.hopHome = hopHome; this.props = props; this.server = server; + this.port = port; descriptors = new Hashtable(); applications = new Hashtable(); xmlrpcHandlers = new Hashtable();