Skip to content

Commit eabfd57

Browse files
authored
Remove unused parameter to DevFS._scanBundleEntry (flutter#14782)
1 parent 45175f5 commit eabfd57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/flutter_tools/lib/src/devfs.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ class DevFS {
427427
if (bundle != null) {
428428
printTrace('Scanning asset files');
429429
bundle.entries.forEach((String archivePath, DevFSContent content) {
430-
_scanBundleEntry(archivePath, content, bundleDirty);
430+
_scanBundleEntry(archivePath, content);
431431
});
432432
}
433433

@@ -541,7 +541,7 @@ class DevFS {
541541
content._exists = true;
542542
}
543543

544-
void _scanBundleEntry(String archivePath, DevFSContent content, bool bundleDirty) {
544+
void _scanBundleEntry(String archivePath, DevFSContent content) {
545545
// We write the assets into the AssetBundle working dir so that they
546546
// are in the same location in DevFS and the iOS simulator.
547547
final Uri deviceUri = fs.path.toUri(fs.path.join(getAssetBuildDirectory(), archivePath));

0 commit comments

Comments
 (0)