Skip to content

Commit d473635

Browse files
authored
Drop ignores for void_checks false positives (#504)
The linked issue is resolved and this lint no longer surfaces here.
1 parent 86fdb20 commit d473635

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/src/browser_client.dart

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ class BrowserClient extends BaseClient {
5353

5454
var completer = Completer<StreamedResponse>();
5555

56-
// TODO(kevmoo): Waiting on https://github.com/dart-lang/linter/issues/2185
57-
// ignore: void_checks
5856
unawaited(xhr.onLoad.first.then((_) {
5957
var body = (xhr.response as ByteBuffer).asUint8List();
6058
completer.complete(StreamedResponse(
@@ -65,8 +63,6 @@ class BrowserClient extends BaseClient {
6563
reasonPhrase: xhr.statusText));
6664
}));
6765

68-
// TODO(kevmoo): Waiting on https://github.com/dart-lang/linter/issues/2185
69-
// ignore: void_checks
7066
unawaited(xhr.onError.first.then((_) {
7167
// Unfortunately, the underlying XMLHttpRequest API doesn't expose any
7268
// specific information about the error itself.

0 commit comments

Comments
 (0)