diff options
author | Justin Clarke Casey | 2008-12-01 20:28:00 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-12-01 20:28:00 +0000 |
commit | 18ba6c35105fcddbd5a8abedb8f70f67c3033aa1 (patch) | |
tree | 72161dae4893f53399d539ace5c40e11a27a2b73 /OpenSim/Region/ClientStack | |
parent | * Assume that asset data in a reset inventory post is not inlined by default (diff) | |
download | opensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.zip opensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.tar.gz opensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.tar.bz2 opensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.tar.xz |
* minor: A few tiny bits of documentation and log message cleanup before starting something different
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/RegionApplicationBase.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index 61edae5..ce978df 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -53,13 +53,12 @@ namespace OpenSim.Region.ClientStack | |||
53 | 53 | ||
54 | protected BaseHttpServer m_httpServer; | 54 | protected BaseHttpServer m_httpServer; |
55 | protected uint m_httpServerPort; | 55 | protected uint m_httpServerPort; |
56 | 56 | ||
57 | protected CommunicationsManager m_commsManager; | 57 | public CommunicationsManager CommunicationsManager |
58 | public CommunicationsManager CommunicationsManager { | 58 | { |
59 | get { return m_commsManager; } | 59 | get { return m_commsManager; } |
60 | } | 60 | } |
61 | 61 | protected CommunicationsManager m_commsManager; | |
62 | protected SceneManager m_sceneManager = new SceneManager(); | ||
63 | 62 | ||
64 | protected StorageManager m_storageManager; | 63 | protected StorageManager m_storageManager; |
65 | 64 | ||
@@ -69,6 +68,7 @@ namespace OpenSim.Region.ClientStack | |||
69 | { | 68 | { |
70 | get { return m_sceneManager; } | 69 | get { return m_sceneManager; } |
71 | } | 70 | } |
71 | protected SceneManager m_sceneManager = new SceneManager(); | ||
72 | 72 | ||
73 | protected abstract void Initialize(); | 73 | protected abstract void Initialize(); |
74 | protected abstract PhysicsScene GetPhysicsScene(); | 74 | protected abstract PhysicsScene GetPhysicsScene(); |