Skip to content

Commit

Permalink
Make all fields of EventModel final
Browse files Browse the repository at this point in the history
  • Loading branch information
heetel committed Aug 23, 2022
1 parent 81284b3 commit a583566
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public class EventModel implements Comparable<EventModel> {
private final String name;
private final DateTime begin;
private final DateTime end;
private int status;
private final int status;
private final boolean isRecurring;
private List<Attendee> attendees = new ArrayList<>();
private final List<Attendee> attendees = new ArrayList<>();

public EventModel(Long id, String name, DateTime begin, DateTime end, int status, boolean isRecurring) {

Expand Down

0 comments on commit a583566

Please sign in to comment.