Skip to content

Commit 6a98d2b

Browse files
committed
simple cleanup
1 parent 20e0f48 commit 6a98d2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/javacc/net/sf/jsqlparser/parser/JSqlParserCC.jj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ import java.util.*;
8080
* The parser generated by JavaCC
8181
*/
8282
public class CCJSqlParser {
83-
private boolean allowOraclePrior = false;
83+
8484
}
8585

8686
PARSER_END(CCJSqlParser)
@@ -1091,8 +1091,8 @@ OracleHierarchicalExpression OracleHierarchicalQueryClause():
10911091
{
10921092
[ <K_START> <K_WITH> expr=AndExpression() {result.setStartExpression(expr);} ]
10931093
<K_CONNECT> <K_BY> [ <K_NOCYCLE> { result.setNoCycle(true); } ]
1094-
{ allowOraclePrior=true; } expr=AndExpression()
1095-
{ result.setConnectExpression(expr);allowOraclePrior=false; }
1094+
expr=AndExpression()
1095+
{ result.setConnectExpression(expr); }
10961096

10971097
{ return result; }
10981098
}

0 commit comments

Comments
 (0)