Skip to content

Commit

Permalink
add explicit null return (#3234)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Jan 10, 2022
1 parent 045a405 commit 022e4e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions build_resolvers/CHANGELOG.md
@@ -1,3 +1,5 @@
## 2.0.7-dev

## 2.0.6

- Allow the latest analyzer.
Expand Down
1 change: 1 addition & 0 deletions build_resolvers/lib/src/resolver.dart
Expand Up @@ -83,6 +83,7 @@ class PerActionResolver implements ReleasableResolver {
await for (final library in libraries) {
if (library.name == libraryName) return library;
}
return null;
}

@override
Expand Down
2 changes: 1 addition & 1 deletion build_resolvers/pubspec.yaml
@@ -1,5 +1,5 @@
name: build_resolvers
version: 2.0.6
version: 2.0.7-dev
description: Resolve Dart code in a Builder
repository: https://github.com/dart-lang/build/tree/master/build_resolvers

Expand Down

0 comments on commit 022e4e0

Please sign in to comment.