File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ class BrowserClient extends BaseClient {
53
53
54
54
var completer = Completer <StreamedResponse >();
55
55
56
- // TODO(kevmoo): Waiting on https://github.com/dart-lang/linter/issues/2185
57
- // ignore: void_checks
58
56
unawaited (xhr.onLoad.first.then ((_) {
59
57
var body = (xhr.response as ByteBuffer ).asUint8List ();
60
58
completer.complete (StreamedResponse (
@@ -65,8 +63,6 @@ class BrowserClient extends BaseClient {
65
63
reasonPhrase: xhr.statusText));
66
64
}));
67
65
68
- // TODO(kevmoo): Waiting on https://github.com/dart-lang/linter/issues/2185
69
- // ignore: void_checks
70
66
unawaited (xhr.onError.first.then ((_) {
71
67
// Unfortunately, the underlying XMLHttpRequest API doesn't expose any
72
68
// specific information about the error itself.
You can’t perform that action at this time.
0 commit comments