From 8149e4f049a4cf3c3bb07d4b76e498351a3ef0c4 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Thu, 28 Jul 2011 13:10:40 -0400 Subject: [PATCH] Removing unused property. Removing broken dispatch pass-though method. --- lib/Cake/Routing/Dispatcher.php | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/lib/Cake/Routing/Dispatcher.php b/lib/Cake/Routing/Dispatcher.php index 7adc8a850..f16690274 100644 --- a/lib/Cake/Routing/Dispatcher.php +++ b/lib/Cake/Routing/Dispatcher.php @@ -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); - } } /**