Remove redundant parentheses
authorKunal Mehta <legoktm@gmail.com>
Sun, 6 Oct 2013 23:44:04 +0000 (16:44 -0700)
committerKunal Mehta <legoktm@gmail.com>
Sun, 6 Oct 2013 23:44:04 +0000 (16:44 -0700)
Change-Id: I848e6a055df748ac758082372fe3b86f6f323cc9

maintenance/showJobs.php

index e054a36..78c2e48 100644 (file)
@@ -59,7 +59,7 @@ class ShowJobs extends Maintenance {
                                $pending = $queue->getSize();
                                $claimed = $queue->getAcquiredCount();
                                $abandoned = $queue->getAbandonedCount();
-                               $active = ( $claimed - $abandoned );
+                               $active = $claimed - $abandoned;
                                if ( ( $pending + $claimed ) > 0 ) {
                                        $this->output(
                                                "{$type}: $pending queued; " .