Remove never reached code in Debugger::trimPath and test more results

This commit is contained in:
Kyle Robinson Young 2012-09-05 15:52:17 -07:00
parent f1c2b1fba8
commit a214fcd992
2 changed files with 5 additions and 5 deletions

View file

@ -369,9 +369,6 @@ class Debugger {
return str_replace(ROOT, 'ROOT', $path);
}
if (strpos($path, CAKE) === 0) {
return str_replace($corePath, 'CORE' . DS, $path);
}
return $path;
}