File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ class AndroidSdk {
198198 }
199199 }
200200
201- for (final String searchPath in searchPaths. whereType < String >() ) {
201+ for (final String searchPath in searchPaths) {
202202 if (globals.fs.directory (searchPath).existsSync ()) {
203203 return searchPath;
204204 }
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ void main() {
108108 // Create already parsed pubspecs.
109109 final PubspecYaml flutterPubspec = PubspecYaml (flutter);
110110
111- final PubspecDependency gitDependency = flutterPubspec.dependencies.whereType < PubspecDependency >(). firstWhere ((PubspecDependency dep) => dep.kind == DependencyKind .git);
111+ final PubspecDependency gitDependency = flutterPubspec.dependencies.firstWhere ((PubspecDependency dep) => dep.kind == DependencyKind .git);
112112 expect (
113113 gitDependency.lockLine,
114114 '''
You can’t perform that action at this time.
0 commit comments