| Index: corelib/src/implementation/future_implementation.dart
|
| diff --git a/corelib/src/implementation/future_implementation.dart b/corelib/src/implementation/future_implementation.dart
|
| index dcbaa014253c1985ca6abc9266986f6d7b5b5f25..47c1e5d8c07ac628f806556c1f7e1b1e0de3fc1c 100644
|
| --- a/corelib/src/implementation/future_implementation.dart
|
| +++ b/corelib/src/implementation/future_implementation.dart
|
| @@ -91,13 +91,7 @@ class FutureImpl<T> implements Future<T> {
|
| }
|
|
|
| void handleException(void onException(Object exception)) {
|
| - if (_exception !== null) {
|
| - if (!_exceptionHandled) {
|
| - _exceptionHandled = onException(exception);
|
| - }
|
| - } else {
|
| - _exceptionHandlers.add(onException);
|
| - }
|
| + _exceptionHandlers.add(onException);
|
| }
|
|
|
| void _complete() {
|
|
|