aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/native/JsonSchemaBuilder
diff options
context:
space:
mode:
authorh.udo <hudokkow@gmail.com>2018-06-08 12:23:10 +0100
committerh.udo <hudokkow@gmail.com>2018-06-12 13:06:19 +0100
commit5c6e3a8b9bec8a594695fe5808bb384f6645bcec (patch)
tree6b54545a47606b5c6543df01504ef2ed9e09eede /tools/depends/native/JsonSchemaBuilder
parente8d74c663841eddaa70946bee298a15c2454de20 (diff)
[tools] nuke whitespace
Diffstat (limited to 'tools/depends/native/JsonSchemaBuilder')
-rw-r--r--tools/depends/native/JsonSchemaBuilder/src/JsonSchemaBuilder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/depends/native/JsonSchemaBuilder/src/JsonSchemaBuilder.cpp b/tools/depends/native/JsonSchemaBuilder/src/JsonSchemaBuilder.cpp
index 9a8acdbd9b..0e148a1744 100644
--- a/tools/depends/native/JsonSchemaBuilder/src/JsonSchemaBuilder.cpp
+++ b/tools/depends/native/JsonSchemaBuilder/src/JsonSchemaBuilder.cpp
@@ -55,11 +55,11 @@ void print_json(ifstream &in, ofstream &out)
out << endl;
continue;
}
-
+
// If we just closed a whole object we need to print the separator
if (closing)
out << "," << endl;
-
+
out << " ";
bool started = false;
closing = false;
@@ -111,7 +111,7 @@ void print_json(ifstream &in, ofstream &out)
// Only print a closing " if there was real content on the line
if (started)
out << '"';
-
+
// Only print a newline if we haven't just closed a whole object
if (!closing)
out << endl;