diff --git a/lib/Migration/RemoveUnusedJob.php b/lib/Migration/RemoveUnusedJob.php
index b0202f5a4..cb5c5fecc 100644
--- a/lib/Migration/RemoveUnusedJob.php
+++ b/lib/Migration/RemoveUnusedJob.php
@@ -10,12 +10,12 @@ class RemoveUnusedJob implements IRepairStep
 {
     
     /**
-     * @var LoggerInterface 
+     * @var LoggerInterface
      */
     protected $logger;
     
     /**
-     * @var IJobList 
+     * @var IJobList
      */
     protected $joblist;
     
@@ -39,13 +39,12 @@ class RemoveUnusedJob implements IRepairStep
      */
     public function run(IOutput $output)
     {
-        if($this->joblist->has("OCA\News\Cron\Updater", null)){
+        if ($this->joblist->has("OCA\News\Cron\Updater", null)) {
             $output->info("Job exists, attempting to remove");
             $this->joblist->remove("OCA\News\Cron\Updater");
             $output->info("Job removed");
         } else {
             $output->info("Job does not exist, all good");
         }
-        
     }
-}
\ No newline at end of file
+}