diff options
author | Joas Schilling <coding@schilljs.com> | 2024-04-17 15:30:43 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-04-17 15:36:42 +0200 |
commit | 17744f8590513e6a1d0e2a19a101b5f6e7332fcc (patch) | |
tree | 5d534d1d84a5afb414bb6d37d7d84b4c6344e6ef /lib/public/Activity | |
parent | 9f4845e25b32b8244d8f1e5255cd325adc37cd78 (diff) | |
download | nextcloud-server-17744f8590513e6a1d0e2a19a101b5f6e7332fcc.tar.gz nextcloud-server-17744f8590513e6a1d0e2a19a101b5f6e7332fcc.zip |
fix(activity): Remove unneeded exception (types are enforced)
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Activity')
-rw-r--r-- | lib/public/Activity/IManager.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/public/Activity/IManager.php b/lib/public/Activity/IManager.php index 3d364874e5e..06b2ef27259 100644 --- a/lib/public/Activity/IManager.php +++ b/lib/public/Activity/IManager.php @@ -165,7 +165,6 @@ interface IManager { * Set the user we need to use * * @param string|null $currentUserId - * @throws \UnexpectedValueException If the user is invalid * @since 9.0.1 */ public function setCurrentUserId(?string $currentUserId = null): void; |