Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[flutter_tools] Remove obvious local types in gradle builder tests
  • Loading branch information
kyungilcho committed Apr 24, 2026
commit cd46bf4d32dd3d03a67c68b0345215d8b35f5213
Original file line number Diff line number Diff line change
Expand Up @@ -1499,7 +1499,7 @@ void main() {
.directory(fileSystem.path.join(sdkPath(), 'cmdline-tools', 'latest', 'bin'))
.childFile(apkAnalyzerBinaryName)
.createSync(recursive: true);
final AndroidSdk sdk = AndroidSdk(
final sdk = AndroidSdk(
fileSystem.directory(sdkPath()),
java: FakeJava(),
fileSystem: fileSystem,
Expand Down Expand Up @@ -1591,7 +1591,7 @@ void main() {
.directory(fileSystem.path.join(sdkPath(), 'cmdline-tools', 'latest', 'bin'))
.childFile(apkAnalyzerBinaryName)
.createSync(recursive: true);
final AndroidSdk sdk = AndroidSdk(
final sdk = AndroidSdk(
fileSystem.directory(sdkPath()),
java: FakeJava(),
fileSystem: fileSystem,
Expand Down
Loading