diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-01-26 09:51:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 09:51:26 +0100 |
commit | 5a7a5e5352d4ce0d1924a0f90b52022a71f6b3ae (patch) | |
tree | 2a40b119523fa91a3f171a9303edc5eaeb9ed4fe /apps/dav | |
parent | 68f44a9a9323171a850b1a9f75888c48c3283e49 (diff) | |
parent | 4dbee99b7b01d39fced711112c60f341ec3c96e8 (diff) | |
download | nextcloud-server-5a7a5e5352d4ce0d1924a0f90b52022a71f6b3ae.tar.gz nextcloud-server-5a7a5e5352d4ce0d1924a0f90b52022a71f6b3ae.zip |
Merge pull request #8058 from nextcloud/useless-return
Remove useless return statements
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/CalDAV/Plugin.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/dav/lib/CalDAV/Plugin.php b/apps/dav/lib/CalDAV/Plugin.php index 167ea4ffd69..0d793f929b3 100644 --- a/apps/dav/lib/CalDAV/Plugin.php +++ b/apps/dav/lib/CalDAV/Plugin.php @@ -36,8 +36,6 @@ class Plugin extends \Sabre\CalDAV\Plugin { list(, $principalId) = \Sabre\Uri\split($principalUrl); return self::CALENDAR_ROOT .'/' . $principalId; } - - return; } } |