diff --git a/src/shared/util.js b/src/shared/util.js index d2c5d1981..7f6fc931d 100644 --- a/src/shared/util.js +++ b/src/shared/util.js @@ -875,14 +875,6 @@ var Util = (function UtilClosure() { return (lowerCase ? romanStr.toLowerCase() : romanStr); }; - Util.inherit = function Util_inherit(sub, base, prototype) { - sub.prototype = Object.create(base.prototype); - sub.prototype.constructor = sub; - for (var prop in prototype) { - sub.prototype[prop] = prototype[prop]; - } - }; - return Util; })();