[HttpKernel] removed unused local $event variable in Stopwatch::stopSection() method.

This commit is contained in:
Hugo Hamon 2012-01-10 21:48:12 +01:00
parent defdac6d0d
commit f750e5420e

View File

@ -46,7 +46,7 @@ class Stopwatch
*/
public function stopSection($id)
{
$event = $this->stop('section');
$this->stop('section');
if ($id) {
$this->sections[$id] = $this->events;