summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/proxy/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/proxy/Client.cs')
-rw-r--r--csharp/test/Ice/proxy/Client.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/csharp/test/Ice/proxy/Client.cs b/csharp/test/Ice/proxy/Client.cs
index 185315c1b5a..187f95e9c4f 100644
--- a/csharp/test/Ice/proxy/Client.cs
+++ b/csharp/test/Ice/proxy/Client.cs
@@ -8,7 +8,6 @@
// **********************************************************************
using System;
-using System.Diagnostics;
using System.Reflection;
[assembly: CLSCompliant(true)]
@@ -22,9 +21,7 @@ public class Client
private static int run(String[] args, Ice.Communicator communicator)
{
Test.MyClassPrx myClass = AllTests.allTests(communicator);
-
myClass.shutdown();
-
return 0;
}
@@ -41,7 +38,7 @@ public class Client
communicator = Ice.Util.initialize(ref args, initData);
status = run(args, communicator);
}
- catch(System.Exception ex)
+ catch(Exception ex)
{
Console.Error.WriteLine(ex);
status = 1;