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

@@ -49,11 +49,6 @@ jasmine.Runner.prototype.add = function(block) {
this.queue.add(block);
};
/** @deprecated */
jasmine.Runner.prototype.getAllSuites = function() {
return this.suites_;
};
jasmine.Runner.prototype.specs = function () {
var suites = this.suites();
var specs = [];
@@ -70,9 +65,4 @@ jasmine.Runner.prototype.suites = function() {
jasmine.Runner.prototype.results = function() {
return this.queue.results();
};
/** @deprecated */
jasmine.Runner.prototype.getResults = function() {
return this.queue.results();
};