mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-13 14:04:29 -05:00
Comment out unused variables
This commit is contained in:
parent
123c695aa8
commit
c5155caf12
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user