Revert "Add catch block to try/finally in deferred. Fixes #9033. Test case needed." Line of exception was lost when debugging.

This reverts commit 0a80be67f4.
master
timmywil 2011-06-08 10:55:52 -04:00
parent db437be6e3
commit 39a2f29c29
1 changed files with 2 additions and 3 deletions

View 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;
}