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