Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlocker8 committed Jun 28, 2020
1 parent 1e95fb8 commit 6b6e448
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public List<DateTime> getRepeatingDates(DateTime dateFetchLimit)

List<DateTime> temporaryList = new ArrayList<>(dates);
temporaryList.add(nextDate);
if(endOption.isEndReached((temporaryList)))
if(endOption.isEndReached(temporaryList))
{
return dates;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
@Entity
public class RepeatingModifierMonths extends RepeatingModifier
{
public RepeatingModifierMonths(int numberOfmonths)
public RepeatingModifierMonths(int numberOfMonths)
{
super(numberOfmonths, "repeating.modifier.months");
super(numberOfMonths, "repeating.modifier.months");
}

public RepeatingModifierMonths() {}
Expand Down

0 comments on commit 6b6e448

Please sign in to comment.