* Changed OSDArray.ToString() and OSDMap.ToString() to use JSON formatting instead of the deprecated LLSD notation format

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3353 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2010-05-24 18:23:39 +00:00
parent 6871439ea2
commit 06bc4580a6

View File

@@ -803,7 +803,7 @@ namespace OpenMetaverse.StructuredData
public override string ToString()
{
return OSDParser.SerializeLLSDNotationFormatted(this);
return OSDParser.SerializeJsonString(this);
}
#region IDictionary Implementation
@@ -1035,7 +1035,7 @@ namespace OpenMetaverse.StructuredData
public override string ToString()
{
return OSDParser.SerializeLLSDNotationFormatted(this);
return OSDParser.SerializeJsonString(this);
}
#region IList Implementation