From c28c124f58db93139d11587215bf9bb549fe232d Mon Sep 17 00:00:00 2001 From: "Davis W. Frank" Date: Thu, 10 Oct 2013 14:11:44 -0700 Subject: [PATCH] removed addMatchers from the global. This should have been in previous commit --- lib/jasmine-core/boot.js | 4 ---- lib/jasmine-core/boot/boot.js | 4 ---- 2 files changed, 8 deletions(-) diff --git a/lib/jasmine-core/boot.js b/lib/jasmine-core/boot.js index 4b3a6b1b..a833080a 100644 --- a/lib/jasmine-core/boot.js +++ b/lib/jasmine-core/boot.js @@ -87,10 +87,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. return env.pending(); }, - addMatchers: function(matchers) { - return env.addMatchers(matchers); - }, - spyOn: function(obj, methodName) { return env.spyOn(obj, methodName); }, diff --git a/lib/jasmine-core/boot/boot.js b/lib/jasmine-core/boot/boot.js index ec892c11..9fe80d9a 100644 --- a/lib/jasmine-core/boot/boot.js +++ b/lib/jasmine-core/boot/boot.js @@ -65,10 +65,6 @@ return env.pending(); }, - addMatchers: function(matchers) { - return env.addMatchers(matchers); - }, - spyOn: function(obj, methodName) { return env.spyOn(obj, methodName); },