diff options
author | Mike Mazur | 2009-02-03 05:20:26 +0000 |
---|---|---|
committer | Mike Mazur | 2009-02-03 05:20:26 +0000 |
commit | 9377c6f2b28c75a093fa554d64e0d63e6bdf2fa5 (patch) | |
tree | 8dbd671990b4d6c5a40d369b0d026df8851b3e1f /OpenSim/Framework/Communications/InventoryServiceBase.cs | |
parent | - move IAssetDataPlugin from OpenSim/Framework/IAssetProvider.cs to (diff) | |
download | opensim-SC-9377c6f2b28c75a093fa554d64e0d63e6bdf2fa5.zip opensim-SC-9377c6f2b28c75a093fa554d64e0d63e6bdf2fa5.tar.gz opensim-SC-9377c6f2b28c75a093fa554d64e0d63e6bdf2fa5.tar.bz2 opensim-SC-9377c6f2b28c75a093fa554d64e0d63e6bdf2fa5.tar.xz |
- move OpenSim/Framework/IInventoryData.cs to
OpenSim/Data/IInventoryData.cs
- trim trailing whitespace
Diffstat (limited to 'OpenSim/Framework/Communications/InventoryServiceBase.cs')
-rw-r--r-- | OpenSim/Framework/Communications/InventoryServiceBase.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs index 7a44420..ec5c493 100644 --- a/OpenSim/Framework/Communications/InventoryServiceBase.cs +++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs | |||
@@ -33,6 +33,8 @@ using System.Threading; | |||
33 | using OpenMetaverse; | 33 | using OpenMetaverse; |
34 | using log4net; | 34 | using log4net; |
35 | 35 | ||
36 | using OpenSim.Data; | ||
37 | |||
36 | namespace OpenSim.Framework.Communications | 38 | namespace OpenSim.Framework.Communications |
37 | { | 39 | { |
38 | /// <summary> | 40 | /// <summary> |
@@ -50,12 +52,12 @@ namespace OpenSim.Framework.Communications | |||
50 | /// <summary> | 52 | /// <summary> |
51 | /// Add a new inventory data plugin - plugins will be requested in the order they were added. | 53 | /// Add a new inventory data plugin - plugins will be requested in the order they were added. |
52 | /// </summary> | 54 | /// </summary> |
53 | /// <param name="plugin">The plugin that will provide data</param> | 55 | /// <param name="plugin">The plugin that will provide data</param> |
54 | public void AddPlugin(IInventoryDataPlugin plugin) | 56 | public void AddPlugin(IInventoryDataPlugin plugin) |
55 | { | 57 | { |
56 | m_plugins.Add(plugin); | 58 | m_plugins.Add(plugin); |
57 | } | 59 | } |
58 | 60 | ||
59 | /// <summary> | 61 | /// <summary> |
60 | /// Adds a new inventory data plugin - plugins will be requested in the order they were loaded. | 62 | /// Adds a new inventory data plugin - plugins will be requested in the order they were loaded. |
61 | /// </summary> | 63 | /// </summary> |