| Index: sdk/lib/mdv_observe_impl/mdv_observe_impl.dart
|
| diff --git a/sdk/lib/mdv_observe_impl/mdv_observe_impl.dart b/sdk/lib/mdv_observe_impl/mdv_observe_impl.dart
|
| index ed42d62ef2453b0aa663e286f361c9ea0e1546f1..577f0b8ce6d7c0e6baa1aea0fb82ce2868287456 100644
|
| --- a/sdk/lib/mdv_observe_impl/mdv_observe_impl.dart
|
| +++ b/sdk/lib/mdv_observe_impl/mdv_observe_impl.dart
|
| @@ -69,7 +69,7 @@ abstract class ObservableMixin implements Observable {
|
| Stream<List<ChangeRecord>> get changes {
|
| if (_multiplexController == null) {
|
| _multiplexController =
|
| - new StreamController<List<ChangeRecord>>.multiplex();
|
| + new StreamController<List<ChangeRecord>>.broadcast();
|
| }
|
| return _multiplexController.stream;
|
| }
|
|
|