summaryrefslogtreecommitdiff
path: root/java/test/Ice/operations/Server.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2006-06-05 16:53:21 +0000
committerMatthew Newhook <matthew@zeroc.com>2006-06-05 16:53:21 +0000
commitdc99d7ec93b9457b924d168b9b55543613963f0e (patch)
treeebb3cf194a2e7d0e1bd2bf455f9c3632f1b97a0a /java/test/Ice/operations/Server.java
parent- Changes to align dynamic filtering with the current Glacier2Filters wiki (diff)
downloadice-dc99d7ec93b9457b924d168b9b55543613963f0e.tar.bz2
ice-dc99d7ec93b9457b924d168b9b55543613963f0e.tar.xz
ice-dc99d7ec93b9457b924d168b9b55543613963f0e.zip
supress warnings.
Diffstat (limited to 'java/test/Ice/operations/Server.java')
-rw-r--r--java/test/Ice/operations/Server.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/java/test/Ice/operations/Server.java b/java/test/Ice/operations/Server.java
index d7d387b9150..daf4225754b 100644
--- a/java/test/Ice/operations/Server.java
+++ b/java/test/Ice/operations/Server.java
@@ -31,7 +31,11 @@ public class Server
try
{
- communicator = Ice.Util.initialize(args);
+ Ice.StringSeqHolder argsH = new Ice.StringSeqHolder(args);
+ Ice.Properties properties = Ice.Util.getDefaultProperties(argsH);
+ properties.setProperty("Ice.Warn.Connections", "0");
+
+ communicator = Ice.Util.initialize(argsH);
status = run(args, communicator);
}
catch(Ice.LocalException ex)