From dca6c80bfded3d7895487e12c78874a884060be2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 8 Jan 2021 15:52:10 +0100 Subject: [PATCH] Remove SessionHandler methods to delete ACP sessions They were both introduced and deprecated in 5.4. --- .../lib/system/session/SessionHandler.class.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php index 3ecb1f0eef..9bd03b58c5 100644 --- a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php +++ b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php @@ -1318,14 +1318,6 @@ final class SessionHandler extends SingletonFactory { $statement->execute($conditionBuilder->getParameters()); } - /** - * @since 5.4 - * @deprecated 5.4 - This is a noop - */ - public function deleteAcpSessionsExcept(User $user, ?string $sessionID = null): void { - // noop - } - /** * Deletes a user session with the given session ID. * @@ -1343,12 +1335,4 @@ final class SessionHandler extends SingletonFactory { $statement = WCF::getDB()->prepareStatement($sql); $statement->execute([$sessionID]); } - - /** - * @since 5.4 - * @deprecated 5.4 - This is a noop - */ - public function deleteAcpSession(string $sessionID): void { - // noop - } } -- 2.20.1