Removing unused property.

Removing broken dispatch pass-though method.
This commit is contained in:
Mark Story 2011-07-28 13:10:40 -04:00
parent 25682db434
commit 8149e4f049

View file

@ -40,23 +40,15 @@ App::uses('Debugger', 'Utility');
*/
class Dispatcher {
/**
* Response object used for asset/cached responses.
*
* @var CakeResponse
*/
public $response = null;
/**
* Constructor.
*
* @param string $base The base directory for the application. Writes `App.base` to Configure.
*/
public function __construct($url = null, $base = false) {
public function __construct($base = false) {
if ($base !== false) {
Configure::write('App.base', $base);
}
if ($url !== null) {
$this->dispatch($url);
}
}
/**