From e12b0a249674bbe4b1980c74f13d8f09cc2e4432 Mon Sep 17 00:00:00 2001 From: Mike Mazur Date: Tue, 3 Feb 2009 05:20:16 +0000 Subject: - move IAssetDataPlugin from OpenSim/Framework/IAssetProvider.cs to OpenSim/Data/IAssetData.cs - remove some trailing whitespace --- OpenSim/Tests/Common/Mock/TestAssetDataPlugin.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Tests') diff --git a/OpenSim/Tests/Common/Mock/TestAssetDataPlugin.cs b/OpenSim/Tests/Common/Mock/TestAssetDataPlugin.cs index ebece27..fc84eac 100644 --- a/OpenSim/Tests/Common/Mock/TestAssetDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/TestAssetDataPlugin.cs @@ -27,7 +27,7 @@ using OpenMetaverse; using OpenSim.Framework; -using OpenSim.Framework.Communications; +using OpenSim.Data; namespace OpenSim.Tests.Common.Mock { @@ -35,7 +35,7 @@ namespace OpenSim.Tests.Common.Mock /// In memory asset data plugin for test purposes. Could be another dll when properly filled out and when the /// mono addin plugin system starts co-operating with the unit test system. Currently no locking since unit /// tests are single threaded. - /// + /// public class TestAssetDataPlugin : IAssetDataPlugin { public string Version { get { return "0"; } } @@ -43,7 +43,7 @@ namespace OpenSim.Tests.Common.Mock public void Initialise() {} public void Dispose() {} - + public AssetBase FetchAsset(UUID uuid) { return null; } public void CreateAsset(AssetBase asset) {} public void UpdateAsset(AssetBase asset) {} -- cgit v1.1