Remove deprecated cookie management methods from SessionHandler
authorTim Düsterhus <duesterhus@woltlab.com>
Mon, 8 Aug 2022 14:30:51 +0000 (16:30 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Mon, 8 Aug 2022 14:30:51 +0000 (16:30 +0200)
These are for internal use, third party code should not have any reason to call
those.

wcfsetup/install/files/lib/system/session/SessionHandler.class.php

index 8f2589740354b2d5ac503e3c58cac811438b531f..39bfd403d121ec19cf21216d3824642d1d00e395 100644 (file)
@@ -178,20 +178,6 @@ final class SessionHandler extends SingletonFactory
         $this->usersOnlyPermissions = UserGroupOptionCacheBuilder::getInstance()->getData([], 'usersOnlyOptions');
     }
 
-    /**
-     * @deprecated 5.4 - This method is a noop. The cookie suffix is determined automatically.
-     */
-    public function setCookieSuffix()
-    {
-    }
-
-    /**
-     * @deprecated 5.4 - This method is a noop. Cookie handling works automatically.
-     */
-    public function setHasValidCookie($hasValidCookie)
-    {
-    }
-
     /**
      * Parses the session cookie value, returning an array with the stored fields.
      *