1
0
mirror of synced 2025-01-18 14:31:40 +03:00

[2.0] Removed unnecessary parsing condition in the annotation parser.

This commit is contained in:
romanb 2009-07-15 10:31:19 +00:00
parent f7fff511d1
commit 1987082c80

View File

@ -145,9 +145,7 @@ class Parser
}
while (true) {
if ($this->_lexer->lookahead['value'] == '*') {
$this->match('*');
} else if ($this->_lexer->lookahead['value'] == '@') {
if ($this->_lexer->lookahead['value'] == '@') {
$this->_isNestedAnnotation = false;
$annot = $this->Annotation();
if ($annot === false) {