File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.9.7+11
2
+
3
+ * Fix an analysis hint.
4
+
1
5
# 0.9.7+10
2
6
3
7
* Set max SDK version to ` <3.0.0 ` , and adjust other dependencies.
Original file line number Diff line number Diff line change @@ -59,12 +59,13 @@ class AsyncQueue<T> {
59
59
/// the process was cancelled.
60
60
Future _processNextItem () {
61
61
var item = _items.removeFirst ();
62
- return _processor (item).then ((_) {
63
- if (_items.isNotEmpty) return _processNextItem ();
62
+ return _processor (item).then ((_) async {
63
+ if (_items.isNotEmpty) return await _processNextItem ();
64
64
65
65
// We have drained the queue, stop processing and wait until something
66
66
// has been enqueued.
67
67
_isProcessing = false ;
68
+ return null ;
68
69
});
69
70
}
70
71
}
Original file line number Diff line number Diff line change 1
1
name : watcher
2
- version : 0.9.7+10
2
+ version : 0.9.7+11
3
3
4
4
description : >
5
5
A file system watcher. It monitors changes to contents of directories and
You can’t perform that action at this time.
0 commit comments