Browse Source

minor cleanup

Simon Krajewski 11 years ago
parent
commit
2502fd9781
1 changed files with 0 additions and 4 deletions
  1. 0 4
      std/python/Boot.hx

+ 0 - 4
std/python/Boot.hx

@@ -124,7 +124,6 @@ import math as _hx_math
 
 	@:keep static inline function isClass(o:Dynamic) : Bool {
 		return o != null && (o == String || inspectIsClass(o));
-		//return untyped __define_feature__("python.Boot.isClass", o._hx_class);
 	}
 
 	@:keep static function isAnonObject (o:Dynamic) {
@@ -271,9 +270,6 @@ import math as _hx_math
 				return "#String";
 			}
 
-			//if (builtinHasAttr(o, "_hx_name")) {
-			//	return "#" + untyped o._hx_name;
-			//}
 			if (o == Array) {
 				return "#Array";
 			}