From: Kunal Mehta Date: Sun, 6 Oct 2013 23:44:04 +0000 (-0700) Subject: Remove redundant parentheses X-Git-Tag: 1.31.0-rc.0~18591 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=4f9b2a849a61f5c0a074beaa8283a1114d786134;p=lhc%2Fweb%2Fwiklou.git Remove redundant parentheses Change-Id: I848e6a055df748ac758082372fe3b86f6f323cc9 --- diff --git a/maintenance/showJobs.php b/maintenance/showJobs.php index e054a364da..78c2e48e31 100644 --- a/maintenance/showJobs.php +++ b/maintenance/showJobs.php @@ -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; " .