The try/catch blocks in Callbacks.as's fireCallbacks method seem unnecessary and are somewhat dangerous since they wrap execution of the callback. Any error in the call stack that results from the callback will be much harder to track down as a result. I think they should just be removed.
The try/catch blocks in
Callbacks.as
'sfireCallbacks
method seem unnecessary and are somewhat dangerous since they wrap execution of the callback. Any error in the call stack that results from the callback will be much harder to track down as a result. I think they should just be removed.