diff options
author | Adam Frisby | 2008-05-01 18:04:42 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-01 18:04:42 +0000 |
commit | 20a9bf08f51351e1e0a9de94f184ff56cd572665 (patch) | |
tree | 52da64dab26353b903c8e4befed0178fa72a188b /OpenSim/Region/Environment/StorageManager.cs | |
parent | More config cleanup in LaunchSLClient. (diff) | |
download | opensim-SC_OLD-20a9bf08f51351e1e0a9de94f184ff56cd572665.zip opensim-SC_OLD-20a9bf08f51351e1e0a9de94f184ff56cd572665.tar.gz opensim-SC_OLD-20a9bf08f51351e1e0a9de94f184ff56cd572665.tar.bz2 opensim-SC_OLD-20a9bf08f51351e1e0a9de94f184ff56cd572665.tar.xz |
* Rolled back a few changes.
Diffstat (limited to 'OpenSim/Region/Environment/StorageManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/StorageManager.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/Environment/StorageManager.cs b/OpenSim/Region/Environment/StorageManager.cs index 2178b5e..b9a42a2 100644 --- a/OpenSim/Region/Environment/StorageManager.cs +++ b/OpenSim/Region/Environment/StorageManager.cs | |||
@@ -36,7 +36,12 @@ namespace OpenSim.Region.Environment | |||
36 | { | 36 | { |
37 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 37 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
38 | 38 | ||
39 | private readonly IRegionDataStore m_dataStore; | 39 | private IRegionDataStore m_dataStore; |
40 | |||
41 | public IRegionDataStore DataStore | ||
42 | { | ||
43 | get { return m_dataStore; } | ||
44 | } | ||
40 | 45 | ||
41 | public StorageManager(IRegionDataStore storage) | 46 | public StorageManager(IRegionDataStore storage) |
42 | { | 47 | { |
@@ -69,10 +74,5 @@ namespace OpenSim.Region.Environment | |||
69 | 74 | ||
70 | //TODO: Add checking and warning to make sure it initialised. | 75 | //TODO: Add checking and warning to make sure it initialised. |
71 | } | 76 | } |
72 | |||
73 | public IRegionDataStore DataStore | ||
74 | { | ||
75 | get { return m_dataStore; } | ||
76 | } | ||
77 | } | 77 | } |
78 | } \ No newline at end of file | 78 | } |