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

Commit 2960d7c

Browse files
vicbtravis@travis-ci.org
authored andcommitted
fix(Change detection): _LinkList items extend _LinkedListItem
Closes #932
1 parent ebe3edc commit 2960d7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/change_detection/linked_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class _LinkedListItem<I extends _LinkedListItem> {
55
I _previous, _next;
66
}
77

8-
class _LinkedList<L extends _LinkedList> {
8+
class _LinkedList<L extends _LinkedListItem> {
99
L _head, _tail;
1010

1111
static _Handler _add(_Handler list, _LinkedListItem item) {

0 commit comments

Comments
 (0)