* 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
This commit is contained in:
lbsa71
2007-10-02 00:00:12 +00:00
parent 625164d3e2
commit b5eaea7b0c
6 changed files with 23 additions and 59 deletions

View File

@@ -350,13 +350,7 @@ namespace OpenSim.Framework.Data.SQLite
*
**********************************************************************/
private void createCol(DataTable dt, string name, System.Type type)
{
DataColumn col = new DataColumn(name, type);
dt.Columns.Add(col);
}
private DataTable createInventoryItemsTable()
private static DataTable createInventoryItemsTable()
{
DataTable inv = new DataTable("inventoryitems");