Update SupportPowerplayPage.java

This commit is contained in:
Alexander Meech 2018-05-11 01:31:42 -04:00
parent 674906c9bf
commit bca212a544
1 changed files with 4 additions and 2 deletions

View File

@ -52,10 +52,12 @@ public class SupportPowerplayPage extends SupportPage
return cal.getTimeInMillis(); return cal.getTimeInMillis();
} }
List<YearMonth> getYearMonthRange(YearMonth start, int months) { List<YearMonth> getYearMonthRange(YearMonth start, int months)
{
List<YearMonth> range = new ArrayList<>(); List<YearMonth> range = new ArrayList<>();
for (int i = 0; i < months; i++) { for (int i = 0; i < months; i++)
{
range.add(start.plusMonths(i)); range.add(start.plusMonths(i));
} }