Skip to content

Commit b73cee6

Browse files
fix: SelectItem generics
- fixes #2196 Signed-off-by: Andreas Reichel <[email protected]>
1 parent 9fd3b9f commit b73cee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/sf/jsqlparser/statement/select/SelectItem.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public SelectItem<T> withExpression(T expression) {
101101
return this;
102102
}
103103

104-
public SelectItem<?> withAlias(Alias alias) {
104+
public SelectItem<T> withAlias(Alias alias) {
105105
this.setAlias(alias);
106106
return this;
107107
}

0 commit comments

Comments
 (0)