From c51e81e1d12055aa4ecdc3da9a41f31b7877165c Mon Sep 17 00:00:00 2001 From: Chris Brody Date: Tue, 11 Dec 2018 19:30:17 -0500 Subject: [PATCH] Remove trailing whitespace from lib/pbxWriter.js (#35) --- lib/pbxWriter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pbxWriter.js b/lib/pbxWriter.js index ae719d9..1f266d9 100644 --- a/lib/pbxWriter.js +++ b/lib/pbxWriter.js @@ -214,7 +214,7 @@ pbxWriter.prototype.writeArray = function (arr, name) { } else if (isObject(entry)) { this.write('{\n'); this.indentLevel++; - + this.writeObject(entry); this.indentLevel--; @@ -286,7 +286,7 @@ pbxWriter.prototype.writeInlineObject = function (n, d, r) { if (isArray(obj)) { output.push(f("%s = (", key)); - + for (var i=0; i < obj.length; i++) { output.push(f("%s, ", obj[i])) }