diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-04-25 12:25:28 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-04-25 12:25:28 +0200 |
commit | 9ed9d3b18e2040091056ed3e10c52877a1edcc98 (patch) | |
tree | 6f4d5eff20a82b367218f3655bcee97289037a18 /java/src/IceGridGUI/Application/PlainServer.java | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=3025 - Bogus IceStorm Make... (diff) | |
download | ice-9ed9d3b18e2040091056ed3e10c52877a1edcc98.tar.bz2 ice-9ed9d3b18e2040091056ed3e10c52877a1edcc98.tar.xz ice-9ed9d3b18e2040091056ed3e10c52877a1edcc98.zip |
Fixed bug 3039
Diffstat (limited to 'java/src/IceGridGUI/Application/PlainServer.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/PlainServer.java | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/java/src/IceGridGUI/Application/PlainServer.java b/java/src/IceGridGUI/Application/PlainServer.java index 2e5415622cb..cf10e4b4163 100755 --- a/java/src/IceGridGUI/Application/PlainServer.java +++ b/java/src/IceGridGUI/Application/PlainServer.java @@ -64,12 +64,9 @@ class PlainServer extends Communicator implements Server static public ServerDescriptor newServerDescriptor() { - java.util.LinkedList properties = new java.util.LinkedList(); - properties.add(new PropertyDescriptor("Ice.Admin.Endpoints", "tcp -h 127.0.0.1")); - return new ServerDescriptor( new java.util.LinkedList(), - new PropertySetDescriptor(new String[0], properties), + new PropertySetDescriptor(new String[0], new java.util.LinkedList()), new java.util.LinkedList(), new String[0], "", @@ -90,13 +87,9 @@ class PlainServer extends Communicator implements Server static public IceBoxDescriptor newIceBoxDescriptor() { - java.util.LinkedList properties = new java.util.LinkedList(); - properties.add(new PropertyDescriptor("IceBox.InstanceName", "${server}")); - properties.add(new PropertyDescriptor("Ice.Admin.Endpoints", "tcp -h 127.0.0.1")); - return new IceBoxDescriptor( new java.util.LinkedList(), - new PropertySetDescriptor(new String[0], properties), + new PropertySetDescriptor(new String[0], new java.util.LinkedList()), new java.util.LinkedList(), new String[0], "", |