Skip to content

Commit

Permalink
use base class
Browse files Browse the repository at this point in the history
  • Loading branch information
cremertim committed Sep 24, 2024
1 parent 306592b commit a627e43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/de/tum/cit/aet/artemis/core/domain/Course.java
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public class Course extends DomainObject {
private boolean unenrollmentEnabled = false;

@Column(name = "faq_enabled")
private Boolean faqEnabled = false;
private boolean faqEnabled = false;

@Column(name = "presentation_score")
private Integer presentationScore;
Expand Down Expand Up @@ -635,7 +635,7 @@ public void setEnrollmentEnabled(Boolean enrollmentEnabled) {
this.enrollmentEnabled = enrollmentEnabled;
}

public Boolean isFaqEnabled() {
public boolean isFaqEnabled() {
return faqEnabled;
}

Expand Down

0 comments on commit a627e43

Please sign in to comment.