Merge pull request #363 from robinboehm/remove-deprecated-matcherspp

Remove deprecated jasmine.Matchers.pp function.
This commit is contained in:
Davis W. Frank
2013-05-12 11:35:02 -07:00

View File

@@ -12,12 +12,6 @@ jasmine.Matchers = function(env, actual, spec, opt_isNot) {
this.isNot = opt_isNot || false;
};
// todo: @deprecated as of Jasmine 0.11, remove soon [xw]
jasmine.Matchers.pp = function(str) {
throw new Error("jasmine.Matchers.pp() is no longer supported, please use jasmine.pp() instead!");
};
jasmine.Matchers.wrapInto_ = function(prototype, matchersClass) {
for (var methodName in prototype) {
var orig = prototype[methodName];