From: Philipp Date: Tue, 18 Oct 2022 19:11:19 +0000 (+0200) Subject: Remove unused Core\Session::pop() method X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dfb57927732f738d1b59c77dd308dbaadb466126;p=friendica.git Remove unused Core\Session::pop() method --- diff --git a/src/Core/Session.php b/src/Core/Session.php index cc8ede5cad..9deadbedb2 100644 --- a/src/Core/Session.php +++ b/src/Core/Session.php @@ -34,11 +34,6 @@ class Session public static $exists = false; public static $expire = 180000; - public static function pop($name, $defaults = null) - { - return DI::session()->pop($name, $defaults); - } - public static function set($name, $value) { DI::session()->set($name, $value);