Chromium Code Reviews| Index: sdk/lib/async/stream.dart |
| diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart |
| index dddc00406cc5ba3a970226010fdd988f5cd4df4f..c26b4e177cbcee4796f12d122819b666c6498678 100644 |
| --- a/sdk/lib/async/stream.dart |
| +++ b/sdk/lib/async/stream.dart |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| @@ -1016,7 +1016,7 @@ class EventTransformStream<S, T> extends Stream<T> { |
| bool unsubscribeOnError }) { |
| return new _EventTransformStreamSubscription(_source, _transformer, |
| onData, onError, onDone, |
| - unsubscribeOnError); |
| + true == unsubscribeOnError); |
|
floitsch
2013/02/26 14:47:26
I prefer identical(unsubscribeOnError, true) to sw
Søren Gjesse
2013/02/26 15:23:33
Done.
|
| } |
| } |