Provide the interface for StoreAsset to report success or failure

This commit is contained in:
Tom Grimshaw
2010-06-28 04:02:33 -07:00
parent 7807d11807
commit a5a1df68c2
7 changed files with 16 additions and 7 deletions

View File

@@ -54,9 +54,10 @@ namespace OpenSim.Tests.Common.Mock
return assets.Find(x=>x.FullID == uuid);
}
public void StoreAsset(AssetBase asset)
public bool StoreAsset(AssetBase asset)
{
assets.Add(asset);
return true;
}
public List<AssetMetadata> FetchAssetMetadataSet(int start, int count) { return new List<AssetMetadata>(count); }