Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurighub committed Aug 16, 2021
2 parents ee28cd4 + 51f2690 commit d168efc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ch/xwr/seicentobilling/entities/Periode.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ public void setPerState(final LovState.State perState) {
//Scheint 0 zurück zu geben, obwohl vorhanden. Query löst das Problem. Gleiches Verhalten in Quarkus.
@Caption("Expenses")
@OneToMany(fetch = FetchType.LAZY, mappedBy = "periode")
public Set<Expense> getExpenses() throws Exception {
throw new Exception("do not use! Use DAO.");
//return this.expenses;
public Set<Expense> getExpenses() {
//throw new Exception("do not use! Use DAO.");
return this.expenses;
}

public void setExpenses(final Set<Expense> expenses) {
Expand Down

0 comments on commit d168efc

Please sign in to comment.