mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
* refactor: rename AssetCache.Initialize() to AssetCache.Reset() to avoid having Initialise() and Initialize() in the same class - very difficult to read.
This commit is contained in:
@@ -59,9 +59,8 @@ namespace OpenSim.Tests.Common.Mock
|
||||
m_userDataPlugin = new TestUserDataPlugin();
|
||||
m_inventoryDataPlugin = new TestInventoryDataPlugin();
|
||||
|
||||
SQLAssetServer assetService = new SQLAssetServer(new TestAssetDataPlugin());
|
||||
IAssetCache ac = new AssetCache(assetService);
|
||||
m_assetCache = ac;
|
||||
SQLAssetServer assetService = new SQLAssetServer(new TestAssetDataPlugin());
|
||||
m_assetCache = new AssetCache(assetService);
|
||||
|
||||
LocalInventoryService lis = new LocalInventoryService();
|
||||
lis.AddPlugin(m_inventoryDataPlugin);
|
||||
|
||||
Reference in New Issue
Block a user