From 4f9b2a849a61f5c0a074beaa8283a1114d786134 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sun, 6 Oct 2013 16:44:04 -0700 Subject: [PATCH] Remove redundant parentheses Change-Id: I848e6a055df748ac758082372fe3b86f6f323cc9 --- maintenance/showJobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; " . -- 2.20.1