File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/flutter_tools/lib/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ class DevFS {
427
427
if (bundle != null ) {
428
428
printTrace ('Scanning asset files' );
429
429
bundle.entries.forEach ((String archivePath, DevFSContent content) {
430
- _scanBundleEntry (archivePath, content, bundleDirty );
430
+ _scanBundleEntry (archivePath, content);
431
431
});
432
432
}
433
433
@@ -541,7 +541,7 @@ class DevFS {
541
541
content._exists = true ;
542
542
}
543
543
544
- void _scanBundleEntry (String archivePath, DevFSContent content, bool bundleDirty ) {
544
+ void _scanBundleEntry (String archivePath, DevFSContent content) {
545
545
// We write the assets into the AssetBundle working dir so that they
546
546
// are in the same location in DevFS and the iOS simulator.
547
547
final Uri deviceUri = fs.path.toUri (fs.path.join (getAssetBuildDirectory (), archivePath));
You can’t perform that action at this time.
0 commit comments