Skip to content

Commit

Permalink
Update lib/ordered_set.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
luanpotter authored Oct 17, 2024
1 parent 1079921 commit 41008a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ordered_set.dart
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class _OrderedSetIterator<E> implements Iterator<E> {
}

_innerIterator = _iterator.current.iterator;
return _innerIterator.moveNext();
return _innerIterator!.moveNext();
}
return true;
}
Expand Down

0 comments on commit 41008a1

Please sign in to comment.