removed obsolete code

This commit is contained in:
Fabien Potencier
2018-03-02 10:19:02 -08:00
parent 14b4e5e1d5
commit 09dee2f71e
2 changed files with 0 additions and 6 deletions
-5
View File
@@ -27,11 +27,6 @@ abstract class Twig_Template
const ARRAY_CALL = 'array'; const ARRAY_CALL = 'array';
const METHOD_CALL = 'method'; const METHOD_CALL = 'method';
/**
* @internal
*/
protected static $cache = array();
protected $parent; protected $parent;
protected $parents = array(); protected $parents = array();
protected $env; protected $env;
-1
View File
@@ -390,7 +390,6 @@ class Twig_TemplateTest extends Twig_Template
public function __construct(Twig_Environment $env, $name = 'index.twig') public function __construct(Twig_Environment $env, $name = 'index.twig')
{ {
parent::__construct($env); parent::__construct($env);
self::$cache = array();
$this->name = $name; $this->name = $name;
} }