diff options
author | Melanie | 2018-12-31 00:21:50 +0000 |
---|---|---|
committer | Melanie | 2018-12-31 00:21:50 +0000 |
commit | d8ade44fe91b5950944a92d3d1ee2835e4124611 (patch) | |
tree | a09c72b3da5dbb38202a3abc65387c5526acb93b /OpenSim/Data/MySQL/MySQLSimulationData.cs | |
parent | add some persistence (mysql only) (diff) | |
download | opensim-SC-d8ade44fe91b5950944a92d3d1ee2835e4124611.zip opensim-SC-d8ade44fe91b5950944a92d3d1ee2835e4124611.tar.gz opensim-SC-d8ade44fe91b5950944a92d3d1ee2835e4124611.tar.bz2 opensim-SC-d8ade44fe91b5950944a92d3d1ee2835e4124611.tar.xz |
Put the virtual decls back in, they're needed by the freshly donated ...
... XStorage module that creates the XML for the new viewer, anod more.
It overrides them to know if new init XML needs to be cached.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLSimulationData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs index 55de192..c09154d 100644 --- a/OpenSim/Data/MySQL/MySQLSimulationData.cs +++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs | |||
@@ -62,7 +62,7 @@ namespace OpenSim.Data.MySQL | |||
62 | /// </summary> | 62 | /// </summary> |
63 | private object m_dbLock = new object(); | 63 | private object m_dbLock = new object(); |
64 | 64 | ||
65 | protected Assembly Assembly | 65 | protected virtual Assembly Assembly |
66 | { | 66 | { |
67 | get { return GetType().Assembly; } | 67 | get { return GetType().Assembly; } |
68 | } | 68 | } |
@@ -76,7 +76,7 @@ namespace OpenSim.Data.MySQL | |||
76 | Initialise(connectionString); | 76 | Initialise(connectionString); |
77 | } | 77 | } |
78 | 78 | ||
79 | public void Initialise(string connectionString) | 79 | public virtual void Initialise(string connectionString) |
80 | { | 80 | { |
81 | m_connectionString = connectionString; | 81 | m_connectionString = connectionString; |
82 | 82 | ||