From fdc9ed89b4adaa7f23ca06613b2ee36c30895021 Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 2 Apr 2007 15:48:01 +0000 Subject: OpenSim no longer uses OpenSim.Config.SimConfigDb4o, it now uses OpenSim.GenericConfig.Xml (or a class implementing IGenericConfig). --- OpenSim.RegionServer/world/World.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'OpenSim.RegionServer/world/World.cs') diff --git a/OpenSim.RegionServer/world/World.cs b/OpenSim.RegionServer/world/World.cs index 4f8e53d..e848cad 100644 --- a/OpenSim.RegionServer/world/World.cs +++ b/OpenSim.RegionServer/world/World.cs @@ -31,16 +31,14 @@ namespace OpenSim.world private Dictionary m_clientThreads; private ulong m_regionHandle; private string m_regionName; - private SimConfig m_cfg; private InventoryCache _inventoryCache; private AssetCache _assetCache; - public World(Dictionary clientThreads, ulong regionHandle, string regionName, SimConfig cfg) + public World(Dictionary clientThreads, ulong regionHandle, string regionName) { m_clientThreads = clientThreads; m_regionHandle = regionHandle; m_regionName = regionName; - m_cfg = cfg; OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs - creating new entitities instance"); Entities = new Dictionary(); -- cgit v1.1