Skip to content

Commit

Permalink
fix(android): remove getters for documented properties on RecurrenceRule
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Feb 12, 2021
1 parent 7c86d59 commit a413a9e
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,63 +276,54 @@ private void calculateInterval()

//region kroll proxy methods
@Kroll.getProperty
@Kroll.method
public String getCalendarID()
{
return this.calendarID;
}

@Kroll.getProperty
@Kroll.method
public int[] getDaysOfTheMonth()
{
return this.daysOfTheMonth;
}

@Kroll.getProperty
@Kroll.method
public KrollDict[] getDaysOfTheWeek()
{
return this.daysOfTheWeek;
}

@Kroll.getProperty
@Kroll.method
public int[] getDaysOfTheYear()
{
return this.daysOfTheYear;
}

@Kroll.getProperty
@Kroll.method
public KrollDict getEnd()
{
return this.endDictionary;
}

@Kroll.getProperty
@Kroll.method
public int getFrequency()
{
return this.frequency.toTiIntId();
}

@Kroll.getProperty
@Kroll.method
public int getInterval()
{
return this.interval;
}

@Kroll.getProperty
@Kroll.method
public int[] monthsOfTheYear()
{
return this.monthsOfTheYear;
}

@Kroll.getProperty
@Kroll.method
public int[] getWeeksOfTheYear()
{
return this.weeksOfTheYear;
Expand Down

0 comments on commit a413a9e

Please sign in to comment.