From f2bc404e70aa41cb82e11203c741499c0091acc6 Mon Sep 17 00:00:00 2001 From: Dr Scofield Date: Fri, 25 Jul 2008 12:59:41 +0000 Subject: [PATCH] squasing warning. --- .../Framework/Communications/Cache/AuthedSessionCache.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs b/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs index b989997adf..625c42b547 100644 --- a/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs +++ b/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs @@ -57,16 +57,16 @@ namespace OpenSim.Framework.Communications.Cache private static readonly int DEFAULT_LIFETIME = 30; private Dictionary m_authed_sessions = new Dictionary(); - private int m_session_lifetime = DEFAULT_LIFETIME; + // private int m_session_lifetime = DEFAULT_LIFETIME; public AuthedSessionCache() { - m_session_lifetime = DEFAULT_LIFETIME; + // m_session_lifetime = DEFAULT_LIFETIME; } public AuthedSessionCache(int timeout) { - m_session_lifetime = timeout; + // m_session_lifetime = timeout; } public CacheData getCachedSession(string session_id, string agent_id)