diff --git a/src/core/util.js b/src/core/util.js index 6490e36b..b3a30e84 100644 --- a/src/core/util.js +++ b/src/core/util.js @@ -1,19 +1,6 @@ -/** - * @namespace - */ jasmine.util = {}; -/** - * Declare that a child class inherit it's prototype from the parent class. - * - * @private - * @param {Function} childClass - * @param {Function} parentClass - */ jasmine.util.inherit = function(childClass, parentClass) { - /** - * @private - */ var subclass = function() { }; subclass.prototype = parentClass.prototype;