diff --git a/src/lang/class.js b/src/lang/class.js index 2c335c9..94181dc 100644 --- a/src/lang/class.js +++ b/src/lang/class.js @@ -81,9 +81,6 @@ var Class = (function() { var ancestor = this.superclass && this.superclass.prototype; var properties = Object.keys(source); - if (!Object.keys({ toString: true }).length) - properties.push("toString", "valueOf"); - // IE6 doesn't enumerate toString and valueOf properties, // Force copy if they're not coming from Object.prototype. if (!Object.keys({ toString: true }).length) {