mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 22:45:43 +08:00
Cleaning up a few HG things. HG Posts may now work in grids, but if the home grid is a standalone, this still doesn't work -- something wrong with RegionAssetService's DB connection.
This commit is contained in:
@@ -46,12 +46,6 @@ namespace OpenSim.Region.Framework.Scenes.Hypergrid
|
||||
#region Fields
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
// This maps between asset server URLs and asset server clients
|
||||
private Dictionary<string, GridAssetClient> m_assetServers = new Dictionary<string, GridAssetClient>();
|
||||
|
||||
// This maps between asset UUIDs and asset servers
|
||||
private Dictionary<UUID, GridAssetClient> m_assetMap = new Dictionary<UUID, GridAssetClient>();
|
||||
|
||||
// This maps between inventory server urls and inventory server clients
|
||||
private Dictionary<string, InventoryClient> m_inventoryServers = new Dictionary<string, InventoryClient>();
|
||||
|
||||
@@ -103,11 +97,6 @@ namespace OpenSim.Region.Framework.Scenes.Hypergrid
|
||||
return false;
|
||||
}
|
||||
|
||||
private bool IsInAssetMap(UUID uuid)
|
||||
{
|
||||
return m_assetMap.ContainsKey(uuid);
|
||||
}
|
||||
|
||||
private AssetBase FetchAsset(string url, UUID assetID, bool isTexture)
|
||||
{
|
||||
AssetBase asset = m_scene.AssetService.Get(url + "/" + assetID.ToString());
|
||||
|
||||
Reference in New Issue
Block a user