ソースを参照

Removing unneeded lines in Debugger

Jose Lorenzo Rodriguez 15 年 前
コミット
f2c1f9d6b2
1 ファイル変更0 行追加2 行削除
  1. 0 2
      lib/Cake/Utility/Debugger.php

+ 0 - 2
lib/Cake/Utility/Debugger.php

@@ -176,7 +176,6 @@ class Debugger {
 			if (!$instance || strtolower($class) != strtolower(get_class($instance[0]))) {
 				$instance[0] = new $class();
 				if (Configure::read('debug') > 0) {
-					Configure::version(); // Make sure the core config is loaded
 					$instance[0]->helpPath = Configure::read('Cake.Debugger.HelpPath');
 				}
 			}
@@ -185,7 +184,6 @@ class Debugger {
 		if (!$instance) {
 			$instance[0] = new Debugger();
 			if (Configure::read('debug') > 0) {
-				Configure::version(); // Make sure the core config is loaded
 				$instance[0]->helpPath = Configure::read('Cake.Debugger.HelpPath');
 			}
 		}