diff options
Diffstat (limited to 'cs/demo/Ice/session/SessionFactoryI.cs')
-rwxr-xr-x | cs/demo/Ice/session/SessionFactoryI.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cs/demo/Ice/session/SessionFactoryI.cs b/cs/demo/Ice/session/SessionFactoryI.cs index d5ad3f3a6ad..2f696e0b6fc 100755 --- a/cs/demo/Ice/session/SessionFactoryI.cs +++ b/cs/demo/Ice/session/SessionFactoryI.cs @@ -14,21 +14,21 @@ public class SessionFactoryI : SessionFactoryDisp_ { public SessionFactoryI(ReapThread reapThread) { - _reaper = reapThread; + _reaper = reapThread; } public override SessionPrx create(string name, Ice.Current c) { - SessionI session = new SessionI(name); - SessionPrx proxy = SessionPrxHelper.uncheckedCast(c.adapter.addWithUUID(session)); - _reaper.add(proxy, session); - return proxy; + SessionI session = new SessionI(name); + SessionPrx proxy = SessionPrxHelper.uncheckedCast(c.adapter.addWithUUID(session)); + _reaper.add(proxy, session); + return proxy; } public override void shutdown(Ice.Current c) { - Console.Out.WriteLine("Shutting down..."); - c.adapter.getCommunicator().shutdown(); + Console.Out.WriteLine("Shutting down..."); + c.adapter.getCommunicator().shutdown(); } private ReapThread _reaper; |