diff options
author | lbsa71 | 2007-10-02 00:00:12 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-02 00:00:12 +0000 |
commit | b5eaea7b0c627c55544f4099b50e9ac1a504fe17 (patch) | |
tree | 5104246df864943f368d5a4ddc88d5101c3155b8 /OpenSim/Framework/Data.SQLite | |
parent | removed debug statements (diff) | |
download | opensim-SC_OLD-b5eaea7b0c627c55544f4099b50e9ac1a504fe17.zip opensim-SC_OLD-b5eaea7b0c627c55544f4099b50e9ac1a504fe17.tar.gz opensim-SC_OLD-b5eaea7b0c627c55544f4099b50e9ac1a504fe17.tar.bz2 opensim-SC_OLD-b5eaea7b0c627c55544f4099b50e9ac1a504fe17.tar.xz |
* Moved setup of LocalInventoryService and LocalUserServices to the app layer
* Killed off 'parent' relation from LocalUserServices to CommunicationsLocal
* Deleted obsolete project InventoryServiceBase
* Deleted superfluous createCol function
Diffstat (limited to 'OpenSim/Framework/Data.SQLite')
-rw-r--r-- | OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs | 8 |
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 | ||