From: jaubourg Date: Wed, 23 Feb 2011 23:32:30 +0000 (+0100) Subject: Revert "Fixes #8353. Adds a catch block in resolveWith so that the finally block... X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=5d9db486c774c10293d0813c89dfdbd973120030;p=jquery.git Revert "Fixes #8353. Adds a catch block in resolveWith so that the finally block gets executed in IE7 and IE6." This reverts commit cacea6f7e778d42cda56066a6b1da8fb163410cc. --- diff --git a/src/core.js b/src/core.js index d77c818..036b2db 100644 --- a/src/core.js +++ b/src/core.js @@ -843,12 +843,6 @@ jQuery.extend({ callbacks.shift().apply( context, args ); } } - // We have to add a catch block for - // IE prior to 8 or else the finally - // block will never get executed - catch (e) { - throw e; - } finally { fired = [ context, args ]; firing = 0;