Add missing return for nullably typed function (#4598)

This commit is contained in:
Sam Rawlins
2021-12-10 03:18:07 -08:00
committed by GitHub
parent 3de67cea56
commit 12afeda41e

View File

@ -211,6 +211,7 @@ class PubspecCheckCommand extends PackageLoopingCommand {
return '"description" is too long. pub.dev recommends package '
'descriptions of 60-180 characters.';
}
return null;
}
bool _checkIssueLink(Pubspec pubspec) {