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

Commit

Permalink
fix(dccd): Fix _MapChangeRecord
Browse files Browse the repository at this point in the history
A few changes were missed in #935
  • Loading branch information
vicb committed Apr 22, 2014
1 parent 6017db3 commit 3692385
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/change_detection/dirty_checking_change_detector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -756,12 +756,12 @@ class _MapChangeRecord<K, V> implements MapChangeRecord<K, V> {
if (prev == null) {
_removalsHead = next;
} else {
prev._nextRemovedKeyValue = next;
prev._nextRemoved = next;
}
if (next == null) {
_removalsTail = prev;
} else {
next._prevRemovedKeyValue = prev;
next._prevRemoved = prev;
}
record._prevRemoved = record._nextRemoved = null;
}
Expand Down

0 comments on commit 3692385

Please sign in to comment.