diff --git a/system/Autoloader/FileLocatorCached.php b/system/Autoloader/FileLocatorCached.php index e89e7f7364ca..76423e89f768 100644 --- a/system/Autoloader/FileLocatorCached.php +++ b/system/Autoloader/FileLocatorCached.php @@ -90,20 +90,6 @@ public function deleteCache(): void $this->cacheHandler->delete($this->cacheKey); } - protected function getNamespaces() - { - if (isset($this->cache['getNamespaces'])) { - return $this->cache['getNamespaces']; - } - - $namespaces = $this->locator->getNamespaces(); - - $this->cache['getNamespaces'] = $namespaces; - $this->cacheUpdated = true; - - return $namespaces; - } - public function findQualifiedNameFromPath(string $path): false|string { if (isset($this->cache['findQualifiedNameFromPath'][$path])) {