mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 12:25:42 +08:00
Provide the interface for StoreAsset to report success or failure
This commit is contained in:
@@ -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); }
|
||||
|
||||
Reference in New Issue
Block a user