You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
appandVal(source, serialized, obj, tabs, i == valuesLen-1);
364
+
Objectobj;
365
+
appandVal(source, reg, obj = objs.get(i), tabs, i == valuesLen-1, args);
357
366
if (!(objinstanceofScope) || ((Scope) obj).isEmpty())
358
367
GenerateComment(source, reg, obj);
359
368
}
@@ -365,16 +374,14 @@ else if (format != 0)
365
374
if (i != 0)
366
375
source.append('\n');
367
376
368
-
Objectobj;
369
-
appandVal(source, reg.toString(obj = objs.get(i), args), obj, tabs, i == valuesLen-1);
377
+
appandVal(source, reg, objs.get(i), tabs, i == valuesLen-1, args);
370
378
}
371
379
}
372
380
else// No formating
373
381
{
374
382
for (i = 0; i < valuesLen; i++) //Values
375
383
{
376
-
Objectobj;
377
-
appandVal(source, reg.toString(obj = objs.get(i), args), obj, tabs, i == valuesLen-1);
384
+
appandVal(source, reg, objs.get(i), tabs, i == valuesLen-1, args);
378
385
}
379
386
}
380
387
@@ -386,31 +393,31 @@ else if (format != 0)
386
393
}
387
394
388
395
/**
389
-
* This should append serializedVar into source based on arguments, add separator and return source!
396
+
* his should stringify and append ({@link ParserRegistry#toString(Appendable, Object, Object...)}) varToSerialize into source based on arguments, add separator and return source!
390
397
*
391
398
* @since 1.3.2
392
399
*/
393
-
protectedAppendableappandVar(Appendablesource, CharSequenceserializedVar, Entry<String, ?> var, inttabs, booleanisLast) throwsIOException
* This should append serializedVal into source based on arguments, add separator and return source!
411
+
* This should stringify and append ({@link ParserRegistry#toString(Appendable, Object, Object...)}) objToSerialize into source based on arguments, add separator and return source!
0 commit comments