Skip to content

Commit

Permalink
tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
ottenhoff committed Sep 4, 2024
1 parent ec679f6 commit 18af459
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ public List<CalendarEvent> getFilteredEvents(Map<EventFilterKey, Object> options
return new ArrayList<>(getEvents(allRefs, range, false, eventsLimitPerCalendar));
}

public int getUpcomingDaysLimit() {
public int getUpcomingDaysLimit() {
return m_serverConfigurationService.getInt("calendar.upcoming_days_limit", 60);
}

Expand Down Expand Up @@ -5930,12 +5930,12 @@ String getUserAgent() {
}

// Returns the calendar tool id string.
public String getToolId(){
public String getToolId(){
return "sakai.schedule";
}

// Checks the calendar has been created. For now just returning true to support the API contract.
public boolean isCalendarToolInitialized(String siteId){
public boolean isCalendarToolInitialized(String siteId){
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public RecurrenceRuleBase(int interval, Time until)
* %%% Note: this is currently not implemented, and always uses the "local" zone.
* @return a List of max 1000 RecurrenceInstance generated by this rule in this range.
*/
public List generateInstances(TimeRange prototype, TimeRange range, TimeZone timeZone)
public List generateInstances(TimeRange prototype, TimeRange range, TimeZone timeZone)
{
// these calendars are used if local time zone and the time zone where the first event was created (timeZone) are different
GregorianCalendar firstEventCalendarDate = null;
Expand Down

0 comments on commit 18af459

Please sign in to comment.