diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-10-27 20:06:22 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-10-27 20:06:22 +0000 |
commit | cf95cce15efb9e8d5226b94e8d080252336a491c (patch) | |
tree | 593f42dd1384cf44efd6a754035d8b0ded1a06a4 /java/test/Ice/operations/Client.java | |
parent | undo previous merge (diff) | |
download | ice-cf95cce15efb9e8d5226b94e8d080252336a491c.tar.bz2 ice-cf95cce15efb9e8d5226b94e8d080252336a491c.tar.xz ice-cf95cce15efb9e8d5226b94e8d080252336a491c.zip |
Implicit Context implementation + test
Diffstat (limited to 'java/test/Ice/operations/Client.java')
-rw-r--r-- | java/test/Ice/operations/Client.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/test/Ice/operations/Client.java b/java/test/Ice/operations/Client.java index 581c66fa01e..6d0cbf2ca90 100644 --- a/java/test/Ice/operations/Client.java +++ b/java/test/Ice/operations/Client.java @@ -10,9 +10,9 @@ public class Client { private static int - run(String[] args, Ice.Communicator communicator, Ice.InitializationData initData) + run(String[] args, Ice.Communicator communicator) { - Test.MyClassPrx myClass = AllTests.allTests(communicator, initData, false); + Test.MyClassPrx myClass = AllTests.allTests(communicator, false); System.out.print("testing server shutdown... "); System.out.flush(); @@ -61,7 +61,7 @@ public class Client initData.properties.setProperty("Ice.Warn.Connections", "0"); communicator = Ice.Util.initialize(argsH, initData); - status = run(argsH.value, communicator, initData); + status = run(argsH.value, communicator); } catch(Ice.LocalException ex) { |