Skip to content

Commit fb978ce

Browse files
fix: Remove unneeded LOOKAHEAD
Signed-off-by: Andreas Reichel <[email protected]>
1 parent 0f7493f commit fb978ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3172,7 +3172,7 @@ List<WithItem<?>> WithList():
31723172
}
31733173
{
31743174
<K_WITH> with=WithItem() { withItemsList.add(with); }
3175-
( LOOKAHEAD(3) "," with=WithItem() { withItemsList.add(with); } )*
3175+
( "," with=WithItem() { withItemsList.add(with); } )*
31763176

31773177
{ return withItemsList; }
31783178
}

0 commit comments

Comments
 (0)