summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;