Skip to content

Commit c90fb62

Browse files
Remove unused imports
1 parent cbf9225 commit c90fb62

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1641,7 +1641,7 @@ String RelObjectName() :
16411641
{
16421642
(result = RelObjectNameWithoutValue()
16431643
| tk=<K_GROUP> | tk=<K_INTERVAL> | tk=<K_ON> | tk=<K_ORDER> | tk=<K_START> | tk=<K_TOP> | tk=<K_VALUE>
1644-
| tk=<K_VALUES> | tk=<K_CREATE> | tk=<K_TABLES> )
1644+
| tk=<K_VALUES> | tk=<K_CREATE> | tk=<K_TABLES> )
16451645

16461646
{
16471647
if (tk!=null) result=tk.image;
@@ -1653,7 +1653,7 @@ String RelObjectNameWithoutStart() :
16531653
{ Token tk = null; String result = null; }
16541654
{
16551655
(result = RelObjectNameWithoutValue() | tk=<K_TOP> | tk=<K_VALUE> | tk=<K_VALUES>
1656-
| tk=<K_INTERVAL>)
1656+
| tk=<K_INTERVAL> )
16571657

16581658
{
16591659
if (tk!=null) result=tk.image;
@@ -1672,7 +1672,7 @@ String RelObjectNameExt():
16721672
( result=RelObjectName() | tk=<K_ALL> | tk=<K_ANY> | tk=<K_SOME> | tk=<K_LEFT> | tk=<K_RIGHT> | tk=<K_SET>
16731673
| tk=<K_DOUBLE> | tk=<K_IF> | tk=<K_IIF> | tk=<K_OPTIMIZE> | tk=<K_LIMIT>
16741674
| tk=<K_OFFSET> | tk=<K_PROCEDURE> | tk=<K_PUBLIC>
1675-
| tk=<K_CASEWHEN> | tk=<K_IN> | tk=<K_GROUPING> )
1675+
| tk=<K_CASEWHEN> | tk=<K_IN> | tk=<K_GROUPING> )
16761676
{
16771677
if (tk!=null) result=tk.image;
16781678
return result;
@@ -5792,7 +5792,7 @@ AlterSystemStatement AlterSystemStatement():
57925792
"QUIESCE" "RESTRICTED" { operation = AlterSystemOperation.QUIESCE; }
57935793
)
57945794
|
5795-
(
5795+
(
57965796
"UNQUIESCE" { operation = AlterSystemOperation.UNQUIESCE; }
57975797
)
57985798
|

src/test/java/net/sf/jsqlparser/statement/alter/AlterTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@
3636
import net.sf.jsqlparser.statement.create.table.NamedConstraint;
3737
import net.sf.jsqlparser.statement.create.table.Index.ColumnParams;
3838
import net.sf.jsqlparser.statement.create.table.ForeignKeyIndex;
39-
import net.sf.jsqlparser.statement.select.Select;
40-
import net.sf.jsqlparser.util.validation.ValidationTestAsserts;
41-
import net.sf.jsqlparser.util.validation.feature.DatabaseType;
4239
import org.junit.Test;
4340

4441
public class AlterTest {

0 commit comments

Comments
 (0)