Removing pre-beta deprecated method that was missed in last Release candidate

This commit is contained in:
Mark Story 2010-03-14 16:07:29 -04:00
parent 3d4b1e365d
commit 4c7b62bf64

View file

@ -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.
*