From 1cc3a6ecfb9e882a53384fe3f16776c5050b08fc Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 29 Apr 2009 22:50:57 -0400 Subject: [PATCH] Removing unused variable. --- cake/console/libs/tasks/controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/console/libs/tasks/controller.php b/cake/console/libs/tasks/controller.php index ca05b0b28..ec69bb21f 100644 --- a/cake/console/libs/tasks/controller.php +++ b/cake/console/libs/tasks/controller.php @@ -110,7 +110,7 @@ class ControllerTask extends Shell { $ds = $this->params['connection']; } $this->interactive = false; - $controllers = $this->listAll($ds, false); + $this->listAll($ds, false); foreach ($this->__tables as $table) { $model = $this->_modelName($table); $controller = $this->_controllerName($model);