refactor: Reuse Get() method in AssetService to eliminate some copy/paste in other Get methods

user_profiles
Justin Clark-Casey (justincc) 2013-03-15 22:42:34 +00:00
parent bd0c1d9b6a
commit 45dee383db
1 changed files with 5 additions and 23 deletions

View File

@ -124,15 +124,11 @@ namespace OpenSim.Services.AssetService
{
// m_log.DebugFormat("[ASSET SERVICE]: Get asset metadata for {0}", id);
UUID assetID;
AssetBase asset = Get(id);
if (!UUID.TryParse(id, out assetID))
return null;
AssetBase asset = m_Database.GetAsset(assetID);
if (asset != null)
return asset.Metadata;
else
return null;
}
@ -140,12 +136,7 @@ namespace OpenSim.Services.AssetService
{
// m_log.DebugFormat("[ASSET SERVICE]: Get asset data for {0}", id);
UUID assetID;
if (!UUID.TryParse(id, out assetID))
return null;
AssetBase asset = m_Database.GetAsset(assetID);
AssetBase asset = Get(id);
if (asset != null)
return asset.Data;
@ -157,16 +148,7 @@ namespace OpenSim.Services.AssetService
{
//m_log.DebugFormat("[AssetService]: Get asset async {0}", id);
UUID assetID;
if (!UUID.TryParse(id, out assetID))
return false;
AssetBase asset = m_Database.GetAsset(assetID);
//m_log.DebugFormat("[AssetService]: Got asset {0}", asset);
handler(id, sender, asset);
handler(id, sender, Get(id));
return true;
}