From 7042d87fd16f154abac7bfab8cc16e69dee59e96 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Fri, 16 Nov 2012 14:33:37 +1300 Subject: [PATCH] Remove deprecated Object::set_uninherited() --- core/Object.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/core/Object.php b/core/Object.php index 4fa391645..3fafb7035 100755 --- a/core/Object.php +++ b/core/Object.php @@ -847,14 +847,7 @@ abstract class Object { public function uninherited($name) { return Config::inst()->get(($this->class ? $this->class : get_class($this)), $name, Config::UNINHERITED); } - - /** - * @deprecated - */ - public function set_uninherited() { - Deprecation::notice('2.4', 'Use a custom static on your object instead.'); - } - + // -------------------------------------------------------------------------------------------------------------- /**