summaryrefslogtreecommitdiff
path: root/cs/demo/Glacier2/callback/SessionManagerI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/demo/Glacier2/callback/SessionManagerI.cs')
-rw-r--r--cs/demo/Glacier2/callback/SessionManagerI.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cs/demo/Glacier2/callback/SessionManagerI.cs b/cs/demo/Glacier2/callback/SessionManagerI.cs
index 918786cc528..776944f72d6 100644
--- a/cs/demo/Glacier2/callback/SessionManagerI.cs
+++ b/cs/demo/Glacier2/callback/SessionManagerI.cs
@@ -13,8 +13,8 @@ public sealed class SessionManagerI : Glacier2.SessionManagerDisp_
{
public override Glacier2.SessionPrx create(string userId, Glacier2.SessionControlPrx control, Ice.Current current)
{
- Console.WriteLine("creating session for user `" + userId + "'");
- Glacier2.Session session = new SessionI(userId);
- return Glacier2.SessionPrxHelper.uncheckedCast(current.adapter.addWithUUID(session));
+ Console.WriteLine("creating session for user `" + userId + "'");
+ Glacier2.Session session = new SessionI(userId);
+ return Glacier2.SessionPrxHelper.uncheckedCast(current.adapter.addWithUUID(session));
}
}