aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Inventory
diff options
context:
space:
mode:
authorDiva Canto2009-08-13 14:10:12 -0700
committerDiva Canto2009-08-13 14:10:12 -0700
commit5246dc33dcfc51b7ebb19b269159df3991029350 (patch)
treeaf1a8fa9e0f6408b3280e0165080ac0d580597d9 /OpenSim/Services/Connectors/Inventory
parentInventory redirects from CachedUserInfo to InventoryService COMPLETE! (diff)
downloadopensim-SC_OLD-5246dc33dcfc51b7ebb19b269159df3991029350.zip
opensim-SC_OLD-5246dc33dcfc51b7ebb19b269159df3991029350.tar.gz
opensim-SC_OLD-5246dc33dcfc51b7ebb19b269159df3991029350.tar.bz2
opensim-SC_OLD-5246dc33dcfc51b7ebb19b269159df3991029350.tar.xz
Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' starting to get on my nerves.
Diffstat (limited to 'OpenSim/Services/Connectors/Inventory')
-rw-r--r--OpenSim/Services/Connectors/Inventory/QuickAndDirtyInventoryServiceConnector.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Connectors/Inventory/QuickAndDirtyInventoryServiceConnector.cs b/OpenSim/Services/Connectors/Inventory/QuickAndDirtyInventoryServiceConnector.cs
index 22289aa..41aacd0 100644
--- a/OpenSim/Services/Connectors/Inventory/QuickAndDirtyInventoryServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Inventory/QuickAndDirtyInventoryServiceConnector.cs
@@ -156,12 +156,12 @@ namespace OpenSim.Services.Connectors
156 return false; 156 return false;
157 } 157 }
158 158
159 public InventoryItemBase QueryItem(InventoryItemBase item) 159 public InventoryItemBase GetItem(InventoryItemBase item)
160 { 160 {
161 return null; 161 return null;
162 } 162 }
163 163
164 public InventoryFolderBase QueryFolder(InventoryFolderBase folder) 164 public InventoryFolderBase GetFolder(InventoryFolderBase folder)
165 { 165 {
166 return null; 166 return null;
167 } 167 }