diff --git a/lib/Doctrine/Common/Annotations/Parser.php b/lib/Doctrine/Common/Annotations/Parser.php index b058b64a5..42d14e311 100644 --- a/lib/Doctrine/Common/Annotations/Parser.php +++ b/lib/Doctrine/Common/Annotations/Parser.php @@ -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) {