| Index: utils/pub/validator/dependency.dart
|
| diff --git a/utils/pub/validator/dependency.dart b/utils/pub/validator/dependency.dart
|
| index 378cb6fd7de2e422b649ce20811da655842b8bea..18cff6624b013321e2dc78b7713349f05f89e5f1 100644
|
| --- a/utils/pub/validator/dependency.dart
|
| +++ b/utils/pub/validator/dependency.dart
|
| @@ -20,7 +20,7 @@ class DependencyValidator extends Validator {
|
| : super(entrypoint);
|
|
|
| Future validate() {
|
| - return Futures.forEach(entrypoint.root.pubspec.dependencies, (dependency) {
|
| + return Future.forEach(entrypoint.root.pubspec.dependencies, (dependency) {
|
| if (dependency.source is! HostedSource) {
|
| return _warnAboutSource(dependency);
|
| }
|
|
|