Drop the unused second parameter on \OCA\DAV\CalDAV\CalDavBackend::getShares

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2021-05-07 11:57:31 +02:00
parent df685b4b59
commit 08a4b24926
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
1 changed files with 1 additions and 2 deletions

View File

@ -2550,10 +2550,9 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
/**
* @param int $resourceId
* @param int $calendarType
* @return array
*/
public function getShares($resourceId, $calendarType = self::CALENDAR_TYPE_CALENDAR) {
public function getShares($resourceId) {
return $this->calendarSharingBackend->getShares($resourceId);
}