nnbd_migration: Add missing return statement to nullably-typed function

Bug: https://github.com/dart-lang/sdk/issues/46656
Change-Id: Ifbc498763fdc38440f12f394a5981c4d70fd83bf
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/222380
Reviewed-by: Paul Berry <paulberry@google.com>
Commit-Queue: Samuel Rawlins <srawlins@google.com>
This commit is contained in:
Sam Rawlins 2021-12-08 16:03:00 +00:00 committed by Commit Bot
parent 694f350376
commit 73441183b2

View file

@ -358,6 +358,7 @@ class MigrationCli {
logger: isVerbose! ? loggerFactory(true) : null);
} on Object catch (exception) {
handleArgParsingException(exception);
return null;
}
}