* 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user