From 5276c4bdf81a7d0f0ff12f8573a9cbe51cdda8aa Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Tue, 11 Nov 2008 00:52:47 +0000 Subject: Update svn properties, minor formatting cleanup. --- OpenSim/Framework/Communications/Cache/AssetCache.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Framework/Communications/Cache/AssetCache.cs') diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index 9ec5a98..d988032 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs @@ -177,7 +177,7 @@ namespace OpenSim.Framework.Communications.Cache public bool TryGetCachedAsset(UUID assetId, out AssetBase asset) { Object tmp; - if(m_memcache.TryGet(assetId, out tmp)) + if (m_memcache.TryGet(assetId, out tmp)) { asset = (AssetBase)tmp; //m_log.Info("Retrieved from cache " + assetId); @@ -337,7 +337,7 @@ namespace OpenSim.Framework.Communications.Cache // in the 2 caches differently. Also, locks are probably // needed in all of this, or move to synchronized non // generic forms for Dictionaries. - if(m_memcache.Contains(uuid)) + if (m_memcache.Contains(uuid)) { m_memcache.Remove(uuid); } -- cgit v1.1