Skip to content

Commit 2c88a41

Browse files
committed
Fix
1 parent a0a7525 commit 2c88a41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/sf/jsqlparser/statement/create/table/ColumnDefinition.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ public String toString() {
7373

7474
public String toStringDataTypeAndSpec() {
7575
if (colDataType == null) {
76-
return (columnSpecs == null || columnSpecs.isEmpty() ? ""
77-
: PlainSelect.getStringList(columnSpecs, false, false));
76+
return columnSpecs == null || columnSpecs.isEmpty() ? ""
77+
: PlainSelect.getStringList(columnSpecs, false, false);
7878
}
7979
return colDataType + (columnSpecs != null && !columnSpecs.isEmpty()
8080
? " " + PlainSelect.getStringList(columnSpecs, false, false)

0 commit comments

Comments
 (0)