diff --git a/Assets/VRM/UniJSON/Scripts/ListTreeNode/ListTreeNode.cs b/Assets/VRM/UniJSON/Scripts/ListTreeNode/ListTreeNode.cs index b07678d1c..0c1fef64a 100644 --- a/Assets/VRM/UniJSON/Scripts/ListTreeNode/ListTreeNode.cs +++ b/Assets/VRM/UniJSON/Scripts/ListTreeNode/ListTreeNode.cs @@ -68,9 +68,9 @@ namespace UniJSON if (this.IsArray()) { var sb = new StringBuilder(); - bool isFirst = true; sb.Append("["); /* + bool isFirst = true; foreach (var x in this.ArrayItems()) { if (isFirst) @@ -90,9 +90,9 @@ namespace UniJSON else if (this.IsMap()) { var sb = new StringBuilder(); - bool isFirst = true; sb.Append("{"); /* + bool isFirst = true; foreach (var kv in this.ObjectItems()) { if (isFirst)