remove unnecessary space in JSON object serialization

This commit is contained in:
Günter Obiltschnig 2020-07-29 09:00:49 +02:00
parent 7e866396aa
commit 64101df736

View File

@ -267,7 +267,7 @@ private:
for (unsigned int i = 0; i < indent; i++) out << ' ';
Stringifier::stringify(getKey(it), out, indent, step, options);
out << ((indent > 0) ? " : " : ":");
out << ((indent > 0) ? ": " : ":");
Stringifier::stringify(getValue(it), out, indent + step, step, options);