aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Data.SQLite')
-rw-r--r--OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
index 99fa740..d664e98 100644
--- a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
+++ b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
@@ -350,13 +350,7 @@ namespace OpenSim.Framework.Data.SQLite
350 * 350 *
351 **********************************************************************/ 351 **********************************************************************/
352 352
353 private void createCol(DataTable dt, string name, System.Type type) 353 private static DataTable createInventoryItemsTable()
354 {
355 DataColumn col = new DataColumn(name, type);
356 dt.Columns.Add(col);
357 }
358
359 private DataTable createInventoryItemsTable()
360 { 354 {
361 DataTable inv = new DataTable("inventoryitems"); 355 DataTable inv = new DataTable("inventoryitems");
362 356