Remove unused parameter.

This commit is contained in:
Christian Williams 2009-07-07 23:59:38 -07:00
parent ed00c13b15
commit 6b32586e1f
2 changed files with 2 additions and 2 deletions

View File

@ -1683,7 +1683,7 @@ jasmine.Spec.prototype.waitsFor = function(timeout, latchFunction, message) {
return this;
};
jasmine.Spec.prototype.getMatchersClass_ = function(matcherPrototype) {
jasmine.Spec.prototype.getMatchersClass_ = function() {
return this.matchersClass || jasmine.Matchers;
};

View File

@ -81,7 +81,7 @@ jasmine.Spec.prototype.waitsFor = function(timeout, latchFunction, message) {
return this;
};
jasmine.Spec.prototype.getMatchersClass_ = function(matcherPrototype) {
jasmine.Spec.prototype.getMatchersClass_ = function() {
return this.matchersClass || jasmine.Matchers;
};