diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/RegionApplicationBase.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/RegionApplicationBase.cs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index d6cf7c3..72917d1 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -40,17 +40,15 @@ using OpenSim.Region.Physics.Manager; | |||
40 | 40 | ||
41 | namespace OpenSim.Region.ClientStack | 41 | namespace OpenSim.Region.ClientStack |
42 | { | 42 | { |
43 | public abstract class RegionApplicationBase | 43 | public abstract class RegionApplicationBase : BaseOpenSimServer |
44 | { | 44 | { |
45 | protected AssetCache m_assetCache; | 45 | protected AssetCache m_assetCache; |
46 | protected Dictionary<EndPoint, uint> m_clientCircuits = new Dictionary<EndPoint, uint>(); | 46 | protected Dictionary<EndPoint, uint> m_clientCircuits = new Dictionary<EndPoint, uint>(); |
47 | protected DateTime m_startuptime; | ||
48 | protected NetworkServersInfo m_networkServersInfo; | 47 | protected NetworkServersInfo m_networkServersInfo; |
49 | 48 | ||
50 | protected BaseHttpServer m_httpServer; | 49 | protected BaseHttpServer m_httpServer; |
51 | protected uint m_httpServerPort; | 50 | protected uint m_httpServerPort; |
52 | 51 | ||
53 | protected LogBase m_log; | ||
54 | protected CommunicationsManager m_commsManager; | 52 | protected CommunicationsManager m_commsManager; |
55 | 53 | ||
56 | protected SceneManager m_sceneManager = new SceneManager(); | 54 | protected SceneManager m_sceneManager = new SceneManager(); |
@@ -67,11 +65,6 @@ namespace OpenSim.Region.ClientStack | |||
67 | get { return m_sceneManager; } | 65 | get { return m_sceneManager; } |
68 | } | 66 | } |
69 | 67 | ||
70 | public RegionApplicationBase() | ||
71 | { | ||
72 | m_startuptime = DateTime.Now; | ||
73 | } | ||
74 | |||
75 | public virtual void StartUp() | 68 | public virtual void StartUp() |
76 | { | 69 | { |
77 | ClientView.TerrainManager = new TerrainManager(new SecondLife()); | 70 | ClientView.TerrainManager = new TerrainManager(new SecondLife()); |