| Index: pkg/mdv_observe/lib/src/observable_list.dart
|
| diff --git a/pkg/mdv_observe/lib/src/observable_list.dart b/pkg/mdv_observe/lib/src/observable_list.dart
|
| index 66ca771151631711ab8acb5c043a505c5833856d..c3ae880cb3fa10d553fafdb219d62084471c76ec 100644
|
| --- a/pkg/mdv_observe/lib/src/observable_list.dart
|
| +++ b/pkg/mdv_observe/lib/src/observable_list.dart
|
| @@ -70,8 +70,7 @@ class ObservableList<E> extends _ListBaseWorkaround with ObservableMixin
|
| void operator []=(int index, E value) {
|
| var oldValue = _list[index];
|
| if (hasObservers) {
|
| - _recordChange(new ListChangeRecord(index, addedCount: 1,
|
| - removedCount: 1));
|
| + _recordChange(new ListChangeRecord(index, addedCount: 1, removedCount: 1));
|
| }
|
| _list[index] = value;
|
| }
|
|
|