summaryrefslogtreecommitdiff
path: root/csharp/test/IceGrid/simple/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/IceGrid/simple/Client.cs')
-rw-r--r--csharp/test/IceGrid/simple/Client.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/csharp/test/IceGrid/simple/Client.cs b/csharp/test/IceGrid/simple/Client.cs
index b2607ab696e..21eca6fe720 100644
--- a/csharp/test/IceGrid/simple/Client.cs
+++ b/csharp/test/IceGrid/simple/Client.cs
@@ -7,9 +7,7 @@
//
// **********************************************************************
-using Test;
using System;
-using System.Diagnostics;
using System.Reflection;
[assembly: CLSCompliant(true)]
@@ -54,9 +52,9 @@ public class Client
communicator = Ice.Util.initialize(ref args);
status = run(args, communicator);
}
- catch (System.Exception ex)
+ catch (Exception ex)
{
- System.Console.Error.WriteLine(ex);
+ Console.Error.WriteLine(ex);
status = 1;
}
@@ -68,7 +66,7 @@ public class Client
}
catch (Ice.LocalException ex)
{
- System.Console.Error.WriteLine(ex);
+ Console.Error.WriteLine(ex);
status = 1;
}
}