Remove unneeded function
authorMichael <heluecht@pirati.ca>
Wed, 16 Sep 2020 05:05:15 +0000 (05:05 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 16 Sep 2020 05:05:15 +0000 (05:05 +0000)
src/Network/HTTPRequest.php

index a615564..e4ff041 100644 (file)
@@ -475,14 +475,4 @@ class HTTPRequest implements IHTTPRequest
                        DB_UPDATE_VERSION . '; ' .
                        $this->baseUrl;
        }
-
-       private function redirectBlocked(string $url = null)
-       {
-               $hosts = $this->config->get('system', 'no_redirect_hosts');
-               if (empty($hosts)) {
-                       return false;
-               }
-
-               $hostlist = explode(',', $hosts);
-       }
 }