diff options
Diffstat (limited to 'csharp/test/Ice/dispatcher/Client.cs')
-rw-r--r-- | csharp/test/Ice/dispatcher/Client.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/csharp/test/Ice/dispatcher/Client.cs b/csharp/test/Ice/dispatcher/Client.cs index 7c4e7368e77..e7a69b700be 100644 --- a/csharp/test/Ice/dispatcher/Client.cs +++ b/csharp/test/Ice/dispatcher/Client.cs @@ -8,7 +8,6 @@ // ********************************************************************** using System; -using System.Diagnostics; using System.Reflection; [assembly: CLSCompliant(true)] @@ -44,9 +43,9 @@ public class Client communicator = Ice.Util.initialize(ref args, initData); status = run(args, communicator); } - catch(System.Exception ex) + catch(Exception ex) { - System.Console.Error.WriteLine(ex); + Console.Error.WriteLine(ex); status = 1; } |