Skip to content

Commit

Permalink
Added 0-arg-constructor for TafComboString
Browse files Browse the repository at this point in the history
  • Loading branch information
seejaybee committed Mar 21, 2024
1 parent d15275d commit f6e919f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ public static TafComboString skipString() {
return cs;
}

public TafComboString() {
super();
this.value = null;
}

public TafComboString(String s) {
super(s);
}
Expand Down

0 comments on commit f6e919f

Please sign in to comment.