Skip to content

Commit 8af0464

Browse files
committed
introduced generic list
1 parent c6bc4c3 commit 8af0464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ CreateIndex CreateIndex():
17151715
{
17161716
CreateIndex createIndex = new CreateIndex();
17171717
Table table = null;
1718-
List colNames = new ArrayList();
1718+
List<String> colNames = new ArrayList<String>();
17191719
Token columnName;
17201720
Index index = null;
17211721
String name = null;

0 commit comments

Comments
 (0)