aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/InventoryServiceBase.cs
diff options
context:
space:
mode:
authorDiva Canto2009-08-10 12:44:15 -0700
committerDiva Canto2009-08-10 12:44:15 -0700
commit17cc9b98573a1c4dd4a69113eea90c7fbeccad83 (patch)
treeacfdf6b3d25e8b30797ea77a1c8f10842152fbce /OpenSim/Framework/Communications/InventoryServiceBase.cs
parentConditional to prevent a null ref in tests. The tests may still not pass. (diff)
downloadopensim-SC_OLD-17cc9b98573a1c4dd4a69113eea90c7fbeccad83.zip
opensim-SC_OLD-17cc9b98573a1c4dd4a69113eea90c7fbeccad83.tar.gz
opensim-SC_OLD-17cc9b98573a1c4dd4a69113eea90c7fbeccad83.tar.bz2
opensim-SC_OLD-17cc9b98573a1c4dd4a69113eea90c7fbeccad83.tar.xz
Last piece of cleaning up old inventory. Old IInventoryServices and ISecureInventoryService interfaces removed.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/InventoryServiceBase.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs
index a51de2d..309c415 100644
--- a/OpenSim/Framework/Communications/InventoryServiceBase.cs
+++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs
@@ -36,8 +36,9 @@ namespace OpenSim.Framework.Communications
36 /// <summary> 36 /// <summary>
37 /// Abstract base class used by local and grid implementations of an inventory service. 37 /// Abstract base class used by local and grid implementations of an inventory service.
38 /// </summary> 38 /// </summary>
39 public abstract class InventoryServiceBase : IInventoryServices, IInterServiceInventoryServices 39 public abstract class InventoryServiceBase : IInterServiceInventoryServices
40 { 40 {
41
41 private static readonly ILog m_log 42 private static readonly ILog m_log
42 = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 43 = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
43 44
@@ -153,9 +154,6 @@ namespace OpenSim.Framework.Communications
153 return false; 154 return false;
154 } 155 }
155 156
156 // See IInventoryServices
157 public abstract void RequestInventoryForUser(UUID userID, InventoryReceiptCallback callback);
158
159 public List<InventoryItemBase> GetActiveGestures(UUID userId) 157 public List<InventoryItemBase> GetActiveGestures(UUID userId)
160 { 158 {
161 List<InventoryItemBase> activeGestures = new List<InventoryItemBase>(); 159 List<InventoryItemBase> activeGestures = new List<InventoryItemBase>();