From c5155caf12d23287f00a67daa7e2c13b631d7a02 Mon Sep 17 00:00:00 2001 From: yutopp Date: Tue, 29 Jan 2019 14:55:22 +0900 Subject: [PATCH] Comment out unused variables --- Assets/VRM/UniJSON/Scripts/ListTreeNode/ListTreeNode.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)