diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-10-25 23:45:07 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-10-25 23:47:53 +0100 |
commit | ff1271c7f348b615998489c770741cec277b6684 (patch) | |
tree | 22e81cdfea133cb950ec806d3d2647c39862156c /lib/autoloader.php | |
parent | 172bcf2d51d9a10520129a7a794d397457d91d96 (diff) | |
download | nextcloud-server-ff1271c7f348b615998489c770741cec277b6684.tar.gz nextcloud-server-ff1271c7f348b615998489c770741cec277b6684.zip |
Remove dead code
Those variables are never written to. Thus this is dead code which should be removed.
Diffstat (limited to 'lib/autoloader.php')
-rw-r--r-- | lib/autoloader.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php index f60f5a358ca..b94ac6c5ee4 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -31,12 +31,9 @@ namespace OC; use \OCP\AutoloadNotAllowedException; class Autoloader { + /** @var bool */ private $useGlobalClassPath = true; - - private $prefixPaths = array(); - - private $classPaths = array(); - + /** @var array */ private $validRoots = []; /** @@ -91,9 +88,7 @@ class Autoloader { $class = trim($class, '\\'); $paths = array(); - if (array_key_exists($class, $this->classPaths)) { - $paths[] = $this->classPaths[$class]; - } else if ($this->useGlobalClassPath and array_key_exists($class, \OC::$CLASSPATH)) { + if ($this->useGlobalClassPath && array_key_exists($class, \OC::$CLASSPATH)) { $paths[] = \OC::$CLASSPATH[$class]; /** * @TODO: Remove this when necessary @@ -129,6 +124,10 @@ class Autoloader { return $paths; } + /** + * @param string $fullPath + * @return bool + */ protected function isValidPath($fullPath) { foreach ($this->validRoots as $root => $true) { if (substr($fullPath, 0, strlen($root) + 1) === $root . '/') { |