diff options
Diffstat (limited to 'cs/test/Ice/binding/RemoteCommunicatorI.cs')
-rw-r--r-- | cs/test/Ice/binding/RemoteCommunicatorI.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cs/test/Ice/binding/RemoteCommunicatorI.cs b/cs/test/Ice/binding/RemoteCommunicatorI.cs index c37e15778dd..d87dc7ab85b 100644 --- a/cs/test/Ice/binding/RemoteCommunicatorI.cs +++ b/cs/test/Ice/binding/RemoteCommunicatorI.cs @@ -14,25 +14,25 @@ public class RemoteCommunicatorI : RemoteCommunicatorDisp_ public override RemoteObjectAdapterPrx createObjectAdapter(string name, string endpoints, Ice.Current current) { - Ice.Communicator com = current.adapter.getCommunicator(); - if(com.getProperties().getPropertyAsIntWithDefault("Ice.ThreadPerConnection", 0) == 0) + Ice.Communicator com = current.adapter.getCommunicator(); + if(com.getProperties().getPropertyAsIntWithDefault("Ice.ThreadPerConnection", 0) == 0) { com.getProperties().setProperty("Ice.OA." + name + ".ThreadPool.Size", "1"); } - Ice.ObjectAdapter adapter = com.createObjectAdapterWithEndpoints(name, endpoints); - return RemoteObjectAdapterPrxHelper.uncheckedCast( - current.adapter.addWithUUID(new RemoteObjectAdapterI(adapter))); + Ice.ObjectAdapter adapter = com.createObjectAdapterWithEndpoints(name, endpoints); + return RemoteObjectAdapterPrxHelper.uncheckedCast( + current.adapter.addWithUUID(new RemoteObjectAdapterI(adapter))); } public override void deactivateObjectAdapter(RemoteObjectAdapterPrx adapter, Ice.Current current) { - adapter.deactivate(); // Collocated call. + adapter.deactivate(); // Collocated call. } public override void shutdown(Ice.Current current) { - current.adapter.getCommunicator().shutdown(); + current.adapter.getCommunicator().shutdown(); } }; |