Removed the code that was never being executed

This commit is contained in:
Juan Basso 2014-10-19 18:56:02 -04:00
parent 5263edde8b
commit ba0901d40e

View file

@ -181,15 +181,9 @@ class ClassRegistry {
} elseif ($plugin && class_exists($plugin . 'AppModel')) {
$appModel = $plugin . 'AppModel';
}
if (!empty($appModel)) {
$settings['name'] = $class;
$instance = new $appModel($settings);
}
if (!isset($instance)) {
trigger_error(__d('cake_dev', '(ClassRegistry::init() could not create instance of %s', $class), E_USER_WARNING);
return false;
}
$settings['name'] = $class;
$instance = new $appModel($settings);
}
$_this->map($alias, $class);
}