diff --git a/core/lib/Thelia/Tools/Redirect.php b/core/lib/Thelia/Tools/Redirect.php index 92ae28fa9..66898b0ad 100755 --- a/core/lib/Thelia/Tools/Redirect.php +++ b/core/lib/Thelia/Tools/Redirect.php @@ -28,11 +28,6 @@ use Symfony\Component\HttpFoundation\RedirectResponse; class Redirect { - public static function unauthorize($url) - { - self::exec($url, 401); - } - public static function exec($url, $status = 302) { $response = new RedirectResponse($url, $status);