Tokenizer - remove unused property

This commit is contained in:
Dariusz Rumiński
2014-08-31 18:01:38 +02:00
parent 755601f46e
commit ff3c1b35fb
-2
View File
@@ -75,7 +75,6 @@ class Mustache_Tokenizer
private $state; private $state;
private $tagType; private $tagType;
private $tag;
private $buffer; private $buffer;
private $tokens; private $tokens;
private $seenTag; private $seenTag;
@@ -224,7 +223,6 @@ class Mustache_Tokenizer
{ {
$this->state = self::IN_TEXT; $this->state = self::IN_TEXT;
$this->tagType = null; $this->tagType = null;
$this->tag = null;
$this->buffer = ''; $this->buffer = '';
$this->tokens = array(); $this->tokens = array();
$this->seenTag = false; $this->seenTag = false;