Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 3692385

Browse files
committed
fix(dccd): Fix _MapChangeRecord
A few changes were missed in #935
1 parent 6017db3 commit 3692385

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/change_detection/dirty_checking_change_detector.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -756,12 +756,12 @@ class _MapChangeRecord<K, V> implements MapChangeRecord<K, V> {
756756
if (prev == null) {
757757
_removalsHead = next;
758758
} else {
759-
prev._nextRemovedKeyValue = next;
759+
prev._nextRemoved = next;
760760
}
761761
if (next == null) {
762762
_removalsTail = prev;
763763
} else {
764-
next._prevRemovedKeyValue = prev;
764+
next._prevRemoved = prev;
765765
}
766766
record._prevRemoved = record._nextRemoved = null;
767767
}

0 commit comments

Comments
 (0)