diff options
author | Michi Henning <michi@zeroc.com> | 2005-04-14 05:30:41 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-04-14 05:30:41 +0000 |
commit | f0baa17d58389bca82b6814e8c8621598bb282cc (patch) | |
tree | eb2adb8006b47ef7cfd265756a33642b5bcc029c | |
parent | Updated code generator to avoid warnings generated by unused variables with (diff) | |
download | ice-f0baa17d58389bca82b6814e8c8621598bb282cc.tar.bz2 ice-f0baa17d58389bca82b6814e8c8621598bb282cc.tar.xz ice-f0baa17d58389bca82b6814e8c8621598bb282cc.zip |
Formatting fixes.
-rwxr-xr-x | cs/test/Ice/operations/Server.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cs/test/Ice/operations/Server.cs b/cs/test/Ice/operations/Server.cs index 2be338fc9b7..0e092916ac5 100755 --- a/cs/test/Ice/operations/Server.cs +++ b/cs/test/Ice/operations/Server.cs @@ -43,19 +43,19 @@ public class Server communicator = Ice.Util.initialize(ref args); status = run(args, communicator); } - catch (Ice.LocalException ex) + catch(Ice.LocalException ex) { Console.Error.WriteLine(ex); status = 1; } - if (communicator != null) + if(communicator != null) { try { communicator.destroy(); } - catch (Ice.LocalException ex) + catch(Ice.LocalException ex) { Console.Error.WriteLine(ex); status = 1; |