diff --git a/lib/Cake/Controller/Controller.php b/lib/Cake/Controller/Controller.php index e8481c899..00b80fb2f 100644 --- a/lib/Cake/Controller/Controller.php +++ b/lib/Cake/Controller/Controller.php @@ -1075,7 +1075,6 @@ class Controller extends Object implements CakeEventListener { * @param array $whitelist List of allowed options for paging * @return array Model query results * @link http://book.cakephp.org/2.0/en/controllers.html#Controller::paginate - * @deprecated Will be removed in 3.0. Use PaginatorComponent instead. */ public function paginate($object = null, $scope = array(), $whitelist = array()) { return $this->Components->load('Paginator', $this->paginate)->paginate($object, $scope, $whitelist); diff --git a/lib/Cake/Utility/Set.php b/lib/Cake/Utility/Set.php index 8c6bf3c17..c3fdd63db 100644 --- a/lib/Cake/Utility/Set.php +++ b/lib/Cake/Utility/Set.php @@ -23,6 +23,7 @@ App::uses('Hash', 'Utility'); * Class used for manipulation of arrays. * * @package Cake.Utility + * @deprecated Deprecated since version 2.4, will be removed in 3.0. Use Hash instead. */ class Set {