JString fix to compress initial assignment JSON.
This commit is contained in:
parent
95254310f0
commit
d1e5e41ab2
@ -156,6 +156,12 @@ namespace coreutils {
|
|||||||
while(!eod()) {
|
while(!eod()) {
|
||||||
if(*cursor == ' ')
|
if(*cursor == ' ')
|
||||||
remove(1);
|
remove(1);
|
||||||
|
else if(*cursor == '\r')
|
||||||
|
remove(1);
|
||||||
|
else if(*cursor == '\t')
|
||||||
|
remove(1);
|
||||||
|
else if(*cursor == '\n')
|
||||||
|
remove(1);
|
||||||
else if(startsWith("\""))
|
else if(startsWith("\""))
|
||||||
getContainer();
|
getContainer();
|
||||||
else
|
else
|
||||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user