Skip to content

Commit

Permalink
chore: comments cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zepfred authored and triceo committed Mar 5, 2024
1 parent cbb2686 commit cae0e57
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ public class Room {

private String name;

// No-arg constructor required for Hibernate
public Room() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public class Timeslot {
private LocalTime startTime;
private LocalTime endTime;

// No-arg constructor required for Hibernate
public Timeslot() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public class Lesson {
@PlanningVariable
private Room room;

// No-arg constructor required for Hibernate and Timefold
public Lesson() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class Room {

private String name;

// No-arg constructor required for Hibernate
public Room() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public class Timeslot {
private LocalTime startTime;
private LocalTime endTime;

// No-arg constructor required for Hibernate
public Timeslot() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ public class WorkCalendar {
private LocalDate fromDate; // Inclusive
private LocalDate toDate; // Exclusive

// No-arg constructor required for Hibernate
public WorkCalendar() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public class Crew {

private String name;

// No-arg constructor required for Hibernate
public Crew() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public class Job {
@ShadowVariable(variableListenerClass = EndDateUpdatingVariableListener.class, sourceVariableName = "startDate")
private LocalDate endDate; // Exclusive

// No-arg constructor required for Hibernate and Timefold
public Job() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class WorkCalendar {
private LocalDate fromDate; // Inclusive
private LocalDate toDate; // Exclusive

// No-arg constructor required for Hibernate
public WorkCalendar() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public class Lesson {
@PlanningVariable
private Room room;

// No-arg constructor required for Hibernate and Timefold
public Lesson() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class Room {

private String name;

// No-arg constructor required for Hibernate
public Room() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public class Timeslot {
private LocalTime startTime;
private LocalTime endTime;

// No-arg constructor required for Hibernate
public Timeslot() {
}

Expand Down

0 comments on commit cae0e57

Please sign in to comment.