aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache
diff options
context:
space:
mode:
authorDr Scofield2008-07-25 12:59:41 +0000
committerDr Scofield2008-07-25 12:59:41 +0000
commitf2bc404e70aa41cb82e11203c741499c0091acc6 (patch)
treebc0ecde27362e7ac91d3c923a894f0cc1c31d01e /OpenSim/Framework/Communications/Cache
parentsquashing warning. (diff)
downloadopensim-SC_OLD-f2bc404e70aa41cb82e11203c741499c0091acc6.zip
opensim-SC_OLD-f2bc404e70aa41cb82e11203c741499c0091acc6.tar.gz
opensim-SC_OLD-f2bc404e70aa41cb82e11203c741499c0091acc6.tar.bz2
opensim-SC_OLD-f2bc404e70aa41cb82e11203c741499c0091acc6.tar.xz
squasing warning.
Diffstat (limited to 'OpenSim/Framework/Communications/Cache')
-rw-r--r--OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs b/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs
index b989997..625c42b 100644
--- a/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs
+++ b/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs
@@ -57,16 +57,16 @@ namespace OpenSim.Framework.Communications.Cache
57 57
58 private static readonly int DEFAULT_LIFETIME = 30; 58 private static readonly int DEFAULT_LIFETIME = 30;
59 private Dictionary<string, CacheData> m_authed_sessions = new Dictionary<string,CacheData>(); 59 private Dictionary<string, CacheData> m_authed_sessions = new Dictionary<string,CacheData>();
60 private int m_session_lifetime = DEFAULT_LIFETIME; 60 // private int m_session_lifetime = DEFAULT_LIFETIME;
61 61
62 public AuthedSessionCache() 62 public AuthedSessionCache()
63 { 63 {
64 m_session_lifetime = DEFAULT_LIFETIME; 64 // m_session_lifetime = DEFAULT_LIFETIME;
65 } 65 }
66 66
67 public AuthedSessionCache(int timeout) 67 public AuthedSessionCache(int timeout)
68 { 68 {
69 m_session_lifetime = timeout; 69 // m_session_lifetime = timeout;
70 } 70 }
71 71
72 public CacheData getCachedSession(string session_id, string agent_id) 72 public CacheData getCachedSession(string session_id, string agent_id)