Update util.js

Removed old jsDoc comments
This commit is contained in:
Davis W. Frank
2013-03-03 21:11:30 -08:00
parent 079e6e1e08
commit aa60d5f00d

View File

@@ -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;