Skip to content

Commit

Permalink
Merge pull request #1476 from craig-day/default-constructor
Browse files Browse the repository at this point in the history
default constructor for UnionType
  • Loading branch information
phillip-kruger authored Jul 20, 2022
2 parents 2364c1b + 0a25950 commit 4adf0fd
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ public final class UnionType extends Reference {

private String description;

public UnionType() {
}

public UnionType(String className, String name, String description) {
super(className, name, ReferenceType.UNION);
this.description = description;
Expand Down

0 comments on commit 4adf0fd

Please sign in to comment.