fixed typo

This commit is contained in:
Fabien Potencier
2010-10-01 20:34:31 +02:00
parent 057a64c425
commit b034e6545d
@@ -30,9 +30,6 @@ class Twig_Node_Expression_ExtensionReference extends Twig_Node_Expression
*/
public function compile($compiler)
{
$compiler
->addDebugInfo($this)
->raw(sprintf("\$this->env->getExtension('%s')", $this['name']))
;
$compiler->raw(sprintf("\$this->env->getExtension('%s')", $this['name']));
}
}