]> source.dussan.org Git - jquery.git/commitdiff
Revert "Add catch block to try/finally in deferred. Fixes #9033. Test case needed...
authortimmywil <tim.willison@thisismedium.com>
Wed, 8 Jun 2011 14:55:52 +0000 (10:55 -0400)
committertimmywil <tim.willison@thisismedium.com>
Wed, 8 Jun 2011 14:55:52 +0000 (10:55 -0400)
This reverts commit 0a80be67f4fe968d99777564a02aeddbde1fbf35.

src/deferred.js

index 3d53344e384c77dc66ddf87ffac003c287021686..5cc5fb5be951dfbf346637b8b13fa6da9ff67cf9 100644 (file)
@@ -58,9 +58,8 @@ jQuery.extend({
                                                        while( callbacks[ 0 ] ) {
                                                                callbacks.shift().apply( context, args );
                                                        }
-                                               } catch( e ) {
-                                                       throw e;
-                                               } finally {
+                                               }
+                                               finally {
                                                        fired = [ context, args ];
                                                        firing = 0;
                                                }