Skip to content

Commit

Permalink
Mark use of deprecated type. (#106282)
Browse files Browse the repository at this point in the history
  • Loading branch information
lrhn committed Jun 22, 2022
1 parent 3313c69 commit 94e3184
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -16,7 +16,7 @@ void main() async {
try {
await compute(throwNull, null);
} catch (e) {
if (e is! NullThrownError) {
if (e is! NullThrownError) { // ignore: deprecated_member_use
throw Exception('compute returned bad result');
}
}
Expand Down

0 comments on commit 94e3184

Please sign in to comment.