aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
diff options
context:
space:
mode:
authorJeff Ames2007-12-13 18:45:32 +0000
committerJeff Ames2007-12-13 18:45:32 +0000
commit8d995a5a5dd040c227b18ac8371d89f530a52194 (patch)
treead27fe397ae81741f5a408669ea39d4fc3c00795 /OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
parent* Debugging Shape (diff)
downloadopensim-SC_OLD-8d995a5a5dd040c227b18ac8371d89f530a52194.zip
opensim-SC_OLD-8d995a5a5dd040c227b18ac8371d89f530a52194.tar.gz
opensim-SC_OLD-8d995a5a5dd040c227b18ac8371d89f530a52194.tar.bz2
opensim-SC_OLD-8d995a5a5dd040c227b18ac8371d89f530a52194.tar.xz
Minor cleanup
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
index ddc0694..b9a1daa 100644
--- a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
+++ b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
@@ -82,7 +82,6 @@ namespace OpenSim.Framework.Data.SQLite
82 MainLog.Instance.Verbose("DATASTORE", "Populated Intentory Items Definitions"); 82 MainLog.Instance.Verbose("DATASTORE", "Populated Intentory Items Definitions");
83 83
84 ds.AcceptChanges(); 84 ds.AcceptChanges();
85 return;
86 } 85 }
87 86
88 public InventoryItemBase buildItem(DataRow row) 87 public InventoryItemBase buildItem(DataRow row)
@@ -377,7 +376,7 @@ namespace OpenSim.Framework.Data.SQLite
377 /// Delete all items in the specified folder 376 /// Delete all items in the specified folder
378 /// </summary> 377 /// </summary>
379 /// <param name="folderId">id of the folder, whose item content should be deleted</param> 378 /// <param name="folderId">id of the folder, whose item content should be deleted</param>
380 //!TODO, this is horribly inefficient, but I don't want to ruin the overall structure of this implementatio 379 //!TODO, this is horribly inefficient, but I don't want to ruin the overall structure of this implementation
381 private void deleteItemsInFolder(LLUUID folderId) 380 private void deleteItemsInFolder(LLUUID folderId)
382 { 381 {
383 List<InventoryItemBase> items = getInventoryInFolder(folderId); 382 List<InventoryItemBase> items = getInventoryInFolder(folderId);
@@ -404,7 +403,6 @@ namespace OpenSim.Framework.Data.SQLite
404 addFolder(folder); 403 addFolder(folder);
405 } 404 }
406 405
407
408 /// <summary> 406 /// <summary>
409 /// Delete a folder 407 /// Delete a folder
410 /// </summary> 408 /// </summary>