From: Chad Horohoe Date: Tue, 21 Oct 2014 01:39:46 +0000 (-0700) Subject: Remove unused variable in ProfilerMwprof X-Git-Tag: 1.31.0-rc.0~13545^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/supprimer.php?a=commitdiff_plain;h=9df8e0e34a17f2db3b41a1cfcb29f4df30ce12a2;p=lhc%2Fweb%2Fwiklou.git Remove unused variable in ProfilerMwprof Change-Id: I7643717c3c899999f8393a6af726397b28d441fc --- diff --git a/includes/profiler/ProfilerMwprof.php b/includes/profiler/ProfilerMwprof.php index af3c7741c7..83fed287a8 100644 --- a/includes/profiler/ProfilerMwprof.php +++ b/includes/profiler/ProfilerMwprof.php @@ -75,7 +75,7 @@ class ProfilerMwprof extends Profiler { * @param string $outName Section to close */ public function profileOut( $outName ) { - list( $inName, $inCount, $inWall, $inCpu ) = array_pop( $this->mWorkStack ); + list( $inName, , $inWall, $inCpu ) = array_pop( $this->mWorkStack ); // Check for unbalanced profileIn / profileOut calls. // Bad entries are logged but not sent.