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

@@ -45,11 +45,6 @@ jasmine.Suite.prototype.afterEach = function(afterEachFunction) {
this.after_.push(afterEachFunction);
};
/** @deprecated */
jasmine.Suite.prototype.getResults = function() {
return this.queue.results();
};
jasmine.Suite.prototype.results = function() {
return this.queue.results();
};
@@ -63,11 +58,6 @@ jasmine.Suite.prototype.add = function(block) {
this.queue.add(block);
};
/** @deprecated */
jasmine.Suite.prototype.specCount = function() {
return this.specs_.length;
};
jasmine.Suite.prototype.specs = function() {
return this.specs_;
};