mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* minor: eliminate mono compiler warnings
This commit is contained in:
@@ -53,7 +53,7 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
||||
private static bool enabled = false;
|
||||
|
||||
Scene m_scene;
|
||||
AssetService m_assetService;
|
||||
//AssetService m_assetService;
|
||||
|
||||
#region IRegionModule interface
|
||||
|
||||
@@ -75,7 +75,8 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
||||
{
|
||||
m_log.Info("[HGStandaloneAssetService]: Starting...");
|
||||
|
||||
m_assetService = new AssetService(m_scene);
|
||||
//m_assetService = new AssetService(m_scene);
|
||||
new AssetService(m_scene);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
||||
private static bool enabled = false;
|
||||
|
||||
Scene m_scene;
|
||||
InventoryService m_inventoryService;
|
||||
//InventoryService m_inventoryService;
|
||||
|
||||
#region IRegionModule interface
|
||||
|
||||
@@ -73,7 +73,8 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
||||
if (enabled)
|
||||
{
|
||||
m_log.Info("[HGStandaloneInvService]: Starting...");
|
||||
m_inventoryService = new InventoryService(m_scene);
|
||||
//m_inventoryService = new InventoryService(m_scene);
|
||||
new InventoryService(m_scene);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user