aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/InventoryServiceBase.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/InventoryServiceBase.cs13
1 files changed, 6 insertions, 7 deletions
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs
index 5cbfcf9..0528b91 100644
--- a/OpenSim/Framework/Communications/InventoryServiceBase.cs
+++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs
@@ -259,13 +259,12 @@ namespace OpenSim.Framework.Communications
259 } 259 }
260 } 260 }
261 261
262 // XXX Temporarily don't delete the items since UserProfileCacheService is still doing this 262 List<InventoryItemBase> items = RequestFolderItems(folder.ID);
263// List<InventoryItemBase> items = RequestFolderItems(folder.ID); 263
264// 264 foreach (InventoryItemBase item in items)
265// foreach (InventoryItemBase item : items) 265 {
266// { 266 DeleteItem(item);
267// DeleteItem(item); 267 }
268// }
269 } 268 }
270 269
271 private void AddNewInventorySet(UsersInventory inventory) 270 private void AddNewInventorySet(UsersInventory inventory)