From be2b7fec0cdd794389660752148a01d6390347d5 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 22 Jul 2011 09:21:05 -0700 Subject: [PATCH] Deprecate replace method in Lang class. --- system/lang.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/system/lang.php b/system/lang.php index f18bc4cd..711d489d 100644 --- a/system/lang.php +++ b/system/lang.php @@ -123,18 +123,6 @@ private function load($file, $language) } } - /** - * Set the place-holder replacements. - * - * @param array $replacements - * @return Lang - */ - public function replace($replacements) - { - $this->replacements = $replacements; - return $this; - } - /** * Get the string content of the language line. */