summaryrefslogtreecommitdiff
path: root/cs/test/Ice/servantLocator/Server.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/test/Ice/servantLocator/Server.cs')
-rwxr-xr-xcs/test/Ice/servantLocator/Server.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/cs/test/Ice/servantLocator/Server.cs b/cs/test/Ice/servantLocator/Server.cs
index 6280e1373d4..9cfa58c81ed 100755
--- a/cs/test/Ice/servantLocator/Server.cs
+++ b/cs/test/Ice/servantLocator/Server.cs
@@ -14,12 +14,12 @@ public class Server
public override int run(string[] args)
{
communicator().getProperties().setProperty("Ice.OA.TestAdapter.Endpoints", "default -p 12010 -t 2000");
- communicator().getProperties().setProperty("Ice.Warn.Dispatch", "0");
+ communicator().getProperties().setProperty("Ice.Warn.Dispatch", "0");
Ice.ObjectAdapter adapter = communicator().createObjectAdapter("TestAdapter");
adapter.addServantLocator(new ServantLocatorI("category"), "category");
adapter.addServantLocator(new ServantLocatorI(""), "");
- adapter.add(new TestI(), communicator().stringToIdentity("asm"));
+ adapter.add(new TestI(), communicator().stringToIdentity("asm"));
adapter.activate();
adapter.waitForDeactivate();
@@ -31,9 +31,9 @@ public class Server
{
TestServer app = new TestServer();
int result = app.main(args);
- if(result != 0)
- {
- System.Environment.Exit(result);
- }
+ if(result != 0)
+ {
+ System.Environment.Exit(result);
+ }
}
}