Skip to content
Snippets Groups Projects
Commit 6b6e448e authored by Robert Goldmann's avatar Robert Goldmann
Browse files

cleanup

parent 1e95fb82
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ public class RepeatingOption
List<DateTime> temporaryList = new ArrayList<>(dates);
temporaryList.add(nextDate);
if(endOption.isEndReached((temporaryList)))
if(endOption.isEndReached(temporaryList))
{
return dates;
}
......
......@@ -7,9 +7,9 @@ import javax.persistence.Entity;
@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() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment