Remove @deprecated methods.

This commit is contained in:
Christian Williams
2009-10-19 17:53:29 -07:00
committed by Christian Williams
parent 6b3bf1b3ba
commit b6e408aab8
5 changed files with 2 additions and 60 deletions

View File

@@ -43,11 +43,6 @@ jasmine.Spec.prototype.log = function(message) {
return this.results_.log(message);
};
/** @deprecated */
jasmine.Spec.prototype.getResults = function() {
return this.results_;
};
jasmine.Spec.prototype.runs = function (func) {
var block = new jasmine.Block(this.env, func, this);
this.addToQueue(block);
@@ -62,14 +57,6 @@ jasmine.Spec.prototype.addToQueue = function (block) {
}
};
/**
* @private
* @deprecated
*/
jasmine.Spec.prototype.expects_that = function(actual) {
return this.expect(actual);
};
jasmine.Spec.prototype.expect = function(actual) {
return new (this.getMatchersClass_())(this.env, actual, this.results_);
};