From aa60d5f00d954ce47fd4c5ffce8be16fc8ddc33a Mon Sep 17 00:00:00 2001 From: "Davis W. Frank" Date: Sun, 3 Mar 2013 21:11:30 -0800 Subject: [PATCH] Update util.js Removed old jsDoc comments --- src/core/util.js | 13 ------------- 1 file changed, 13 deletions(-) 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;