Skip to content

Commit 0338aa9

Browse files
committed
Remove some useless comments.
1 parent 56da388 commit 0338aa9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/Lexer.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,6 @@ private function solveAmbiguityOnStarOperator()
364364
{
365365
$iBak = $this->list->idx;
366366
while (null !== ($starToken = $this->list->getNextOfTypeAndValue(Token::TYPE_OPERATOR, '*'))) {
367-
//$starTokenIndex = $this->list->idx;
368367
// ::getNext already gets rid of whitespaces and comments.
369368
$next = $this->list->getNext();
370369
if ($next !== null) {
@@ -376,9 +375,7 @@ private function solveAmbiguityOnStarOperator()
376375
$starToken->flags = Token::FLAG_OPERATOR_SQL;
377376
}
378377
}
379-
//$this->list->idx = $starTokenIndex;
380378
}
381-
// Reset the current index in the list.
382379
$this->list->idx = $iBak;
383380
}
384381

0 commit comments

Comments
 (0)