From 4c7b62bf641719d0117d1b9f71638713df8c66da Mon Sep 17 00:00:00 2001 From: Mark Story Date: Sun, 14 Mar 2010 16:07:29 -0400 Subject: [PATCH] Removing pre-beta deprecated method that was missed in last Release candidate --- cake/libs/set.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/cake/libs/set.php b/cake/libs/set.php index 1e667ae86..516570bab 100644 --- a/cake/libs/set.php +++ b/cake/libs/set.php @@ -801,22 +801,6 @@ class Set { return $val1 + $val2; } -/** - * Determines if two Sets or arrays are equal - * This method is deprecated, and will be removed in a future release. - * - * @param array $val1 First value - * @param array $val2 Second value - * @return boolean true if they are equal, false otherwise - * @access public - * @static - * @deprecated - */ - function isEqual($val1, $val2 = null) { - trigger_error(__('Set::isEqual() is deprecated. Please use standard comparison operators instead.', true), E_USER_WARNING); - return ($val1 == $val2); - } - /** * Determines if one Set or array contains the exact keys and values of another. *