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