aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie2018-12-31 00:21:50 +0000
committerMelanie2018-12-31 00:21:50 +0000
commitd8ade44fe91b5950944a92d3d1ee2835e4124611 (patch)
treea09c72b3da5dbb38202a3abc65387c5526acb93b
parentadd some persistence (mysql only) (diff)
downloadopensim-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.
-rw-r--r--OpenSim/Data/MySQL/MySQLSimulationData.cs4
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