diff options
author | Justin Clark-Casey (justincc) | 2011-01-28 21:51:25 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-01-28 21:51:25 +0000 |
commit | ab1ec3c3cccf30ab61379b700129ca3284578274 (patch) | |
tree | f422f3c4ce7bc7588ff97bf3315d31384d1aae68 /OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts | |
parent | Display supported file extensions/formats in "terrain load help" (Mantis #5349) (diff) | |
download | opensim-SC-ab1ec3c3cccf30ab61379b700129ca3284578274.zip opensim-SC-ab1ec3c3cccf30ab61379b700129ca3284578274.tar.gz opensim-SC-ab1ec3c3cccf30ab61379b700129ca3284578274.tar.bz2 opensim-SC-ab1ec3c3cccf30ab61379b700129ca3284578274.tar.xz |
minor: remove a few mono compiler warnings
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs index 155335b..ddef75f 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs | |||
@@ -38,9 +38,10 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts | |||
38 | { | 38 | { |
39 | private const double CACHE_EXPIRATION_SECONDS = 120000.0; // 33 hours! | 39 | private const double CACHE_EXPIRATION_SECONDS = 120000.0; // 33 hours! |
40 | 40 | ||
41 | private static readonly ILog m_log = | 41 | // private static readonly ILog m_log = |
42 | LogManager.GetLogger( | 42 | // LogManager.GetLogger( |
43 | MethodBase.GetCurrentMethod().DeclaringType); | 43 | // MethodBase.GetCurrentMethod().DeclaringType); |
44 | |||
44 | private ExpiringCache<UUID, UserAccount> m_UUIDCache; | 45 | private ExpiringCache<UUID, UserAccount> m_UUIDCache; |
45 | private ExpiringCache<string, UUID> m_NameCache; | 46 | private ExpiringCache<string, UUID> m_NameCache; |
46 | 47 | ||