Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
fix: add default constructors (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanvolkoff authored Jun 8, 2022
1 parent 3418609 commit 9a81e6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ public class XSKDataStructureHDBProcedureModel extends XSKDataStructureModel {
public XSKDataStructureHDBProcedureModel(XSKDataStructureModelBuilder builder) {
super(builder);
}

public XSKDataStructureHDBProcedureModel() {
super();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ public class XSKDataStructureHDBTableFunctionModel extends XSKDataStructureModel
public XSKDataStructureHDBTableFunctionModel(XSKDataStructureModelBuilder builder) {
super(builder);
}

public XSKDataStructureHDBTableFunctionModel() {
super();
}
}

0 comments on commit 9a81e6c

Please sign in to comment.