Update svn properties, minor formatting cleanup.

This commit is contained in:
Jeff Ames
2008-09-30 05:26:57 +00:00
parent 68ae63e546
commit f6699892dc
3 changed files with 3 additions and 19 deletions

View File

@@ -801,7 +801,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
tokenValue+=JSON[i];
// handle escaped double quotes \"
if(JSON[i]=='\\' && JSON[i+1]=='"')
if (JSON[i]=='\\' && JSON[i+1]=='"')
{
tokenValue+=JSON[i+1];
i++;