Fix the Csharp 3.0 vs 4.0 problem in JsonStore initialization.

Cut down on the logging spam.
This commit is contained in:
Mic Bowman
2012-04-17 14:15:17 -07:00
parent 2d45ba47ac
commit 4db518b9a3
3 changed files with 7 additions and 5 deletions

View File

@@ -74,7 +74,9 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
///
/// </summary>
// -----------------------------------------------------------------
public JsonStore(string value = "")
public JsonStore() : this("") {}
public JsonStore(string value)
{
m_TakeStore = new List<TakeValueCallbackClass>();
m_ReadStore = new List<TakeValueCallbackClass>();