summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-04-14 05:30:41 +0000
committerMichi Henning <michi@zeroc.com>2005-04-14 05:30:41 +0000
commitf0baa17d58389bca82b6814e8c8621598bb282cc (patch)
treeeb2adb8006b47ef7cfd265756a33642b5bcc029c
parentUpdated code generator to avoid warnings generated by unused variables with (diff)
downloadice-f0baa17d58389bca82b6814e8c8621598bb282cc.tar.bz2
ice-f0baa17d58389bca82b6814e8c8621598bb282cc.tar.xz
ice-f0baa17d58389bca82b6814e8c8621598bb282cc.zip
Formatting fixes.
-rwxr-xr-xcs/test/Ice/operations/Server.cs6
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;