Skip to content

Commit

Permalink
refactor: StructuredTemplate 생성자 체이닝 사용
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimprodp committed Nov 24, 2024
1 parent f9c07a4 commit 9091b48
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ public class StructuredTemplate {
}

StructuredTemplate(Template template, Sections sections, Questions questions) {
this.template = template;
this.sections = sections;
this.questions = questions;
this.optionGroups = null;
this.optionItems = null;
this(template, sections, questions, null, null);
}

public long getTemplateId() {
Expand Down

0 comments on commit 9091b48

Please sign in to comment.