From: Tim Düsterhus Date: Fri, 8 Jan 2021 14:52:10 +0000 (+0100) Subject: Remove SessionHandler methods to delete ACP sessions X-Git-Tag: 5.4.0_Alpha_1~409^2^2~19 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=dca6c80bfded3d7895487e12c78874a884060be2;p=GitHub%2FWoltLab%2FWCF.git Remove SessionHandler methods to delete ACP sessions They were both introduced and deprecated in 5.4. --- 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 - } }