mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
Refactor: Rename IImprovedAssetCache to IAssetCache as the old IAssetCache is long gone.
This commit is contained in:
@@ -57,13 +57,13 @@ namespace OpenSim.Region.CoreModules.Agent.TextureSender
|
||||
/// <summary>List of client methods to notify of results of decode</summary>
|
||||
private readonly Dictionary<UUID, List<DecodedCallback>> m_notifyList = new Dictionary<UUID, List<DecodedCallback>>();
|
||||
/// <summary>Cache that will store decoded JPEG2000 layer boundary data</summary>
|
||||
private IImprovedAssetCache m_cache;
|
||||
private IImprovedAssetCache Cache
|
||||
private IAssetCache m_cache;
|
||||
private IAssetCache Cache
|
||||
{
|
||||
get
|
||||
{
|
||||
if (m_cache == null)
|
||||
m_cache = m_scene.RequestModuleInterface<IImprovedAssetCache>();
|
||||
m_cache = m_scene.RequestModuleInterface<IAssetCache>();
|
||||
|
||||
return m_cache;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user