Remove unused variable in ProfilerMwprof
authorChad Horohoe <chadh@wikimedia.org>
Tue, 21 Oct 2014 01:39:46 +0000 (18:39 -0700)
committerChad Horohoe <chadh@wikimedia.org>
Tue, 21 Oct 2014 01:40:12 +0000 (18:40 -0700)
Change-Id: I7643717c3c899999f8393a6af726397b28d441fc

includes/profiler/ProfilerMwprof.php

index af3c774..83fed28 100644 (file)
@@ -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.