Update SupportPowerplayPage.java
This commit is contained in:
parent
674906c9bf
commit
bca212a544
@ -52,10 +52,12 @@ public class SupportPowerplayPage extends SupportPage
|
||||
return cal.getTimeInMillis();
|
||||
}
|
||||
|
||||
List<YearMonth> getYearMonthRange(YearMonth start, int months) {
|
||||
List<YearMonth> getYearMonthRange(YearMonth start, int months)
|
||||
{
|
||||
List<YearMonth> range = new ArrayList<>();
|
||||
|
||||
for (int i = 0; i < months; i++) {
|
||||
for (int i = 0; i < months; i++)
|
||||
{
|
||||
range.add(start.plusMonths(i));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user