From f021c64eb060046bff6e91384e1bbca0384b7d61 Mon Sep 17 00:00:00 2001
From: Melanie Thielker
Date: Thu, 29 Dec 2016 12:34:09 +0000
Subject: Refactor: Rename IImprovedAssetCache to IAssetCache as the old
IAssetCache is long gone.
---
OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'OpenSim/Region/CoreModules/Agent')
diff --git a/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs b/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs
index 47dcbcd..6d1f0c2 100644
--- a/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs
+++ b/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs
@@ -57,13 +57,13 @@ namespace OpenSim.Region.CoreModules.Agent.TextureSender
/// List of client methods to notify of results of decode
private readonly Dictionary> m_notifyList = new Dictionary>();
/// Cache that will store decoded JPEG2000 layer boundary data
- private IImprovedAssetCache m_cache;
- private IImprovedAssetCache Cache
+ private IAssetCache m_cache;
+ private IAssetCache Cache
{
get
{
if (m_cache == null)
- m_cache = m_scene.RequestModuleInterface();
+ m_cache = m_scene.RequestModuleInterface();
return m_cache;
}
--
cgit v1.1