Browse Source

removed a trace from testing

mockey 11 years ago
parent
commit
1cbf58cb8c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      std/js/Boot.hx

+ 0 - 1
std/js/Boot.hx

@@ -217,7 +217,6 @@ class Boot {
 	// get native JS [[Class]]
 	static function __nativeClassName(o:Dynamic):String {
 		var name = untyped __toStr.call(o).slice(8, -1);
-		trace(name);
 		// exclude general Object and Function
 		// also exclude Math and JSON, because instanceof cannot be called on them
 		if (name == "Object" || name == "Function" || name == "Math" || name == "JSON")