Remove trailing spaces from files

Tested: Manually tested GUI for any regressions
Change-Id: I8c0922b7bd67b03b07e8880bc4dba3b862220b33
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/gulp_tasks/minifyvendors.js b/gulp_tasks/minifyvendors.js
index 38a17ce..2819402 100644
--- a/gulp_tasks/minifyvendors.js
+++ b/gulp_tasks/minifyvendors.js
@@ -26,7 +26,7 @@
         .src(options.bowerFolderPath + '/**/*.js')
         .pipe(uglify({
             preserveComments: 'false'
-        })) 
+        }))
         .pipe(rename({suffix: '.min'}))
         .pipe(gulp.dest(function(file) {
             return file.base;