Browse Source

trim comment bloat from lang class.

Taylor Otwell 13 years ago
parent
commit
8ddfdd9e7a
1 changed files with 0 additions and 4 deletions
  1. 0 4
      system/lang.php

+ 0 - 4
system/lang.php

@@ -103,8 +103,6 @@ class Lang {
 		// the language line, otherwise, we will use "application" as the module.
 		// the language line, otherwise, we will use "application" as the module.
 		$module = (strpos($key, '::') !== false) ? substr($key, 0, strpos($key, ':')) : 'application';
 		$module = (strpos($key, '::') !== false) ? substr($key, 0, strpos($key, ':')) : 'application';
 
 
-		// If the language line is stored in a module, we need to strip the module qualifier
-		// off of the language key before continuing.
 		if ($module != 'application')
 		if ($module != 'application')
 		{
 		{
 			$key = substr($key, strpos($key, ':') + 2);
 			$key = substr($key, strpos($key, ':') + 2);
@@ -130,8 +128,6 @@ class Lang {
 	 */
 	 */
 	private function load($module, $file, $language)
 	private function load($module, $file, $language)
 	{
 	{
-		// If the language lines for the given module, file, and language have already been
-		// loaded, we can bail out of this method.
 		if (isset(static::$lines[$module][$language.$file])) return;
 		if (isset(static::$lines[$module][$language.$file])) return;
 
 
 		$path = ($module === 'application') ? LANG_PATH : MODULE_PATH.$module.'/lang/';
 		$path = ($module === 'application') ? LANG_PATH : MODULE_PATH.$module.'/lang/';