summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/session/SessionFactoryI.cs
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
committerBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
commitabada90e3f84dc703b8ddc9efcbed8a946fadead (patch)
tree2c6f9dccd510ea97cb927a7bd635422efaae547a /cs/demo/Ice/session/SessionFactoryI.cs
parentremoving trace message (diff)
downloadice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.bz2
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.xz
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.zip
Expanded tabs into spaces
Diffstat (limited to 'cs/demo/Ice/session/SessionFactoryI.cs')
-rwxr-xr-xcs/demo/Ice/session/SessionFactoryI.cs14
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;