Remove unused code

This commit is contained in:
Imran Remtulla
2024-09-27 19:02:54 -04:00
parent 77bebc48bc
commit dcf6957842

View File

@@ -1367,10 +1367,6 @@ class AppsProvider with ChangeNotifier {
if (file.existsSync()) { if (file.existsSync()) {
file.deleteSync(recursive: true); file.deleteSync(recursive: true);
} }
File iconFile = File('$iconsCacheDir/$appId.png');
if (iconFile.existsSync()) {
iconFile.deleteSync(recursive: true);
}
apkFiles apkFiles
.where( .where(
(element) => element.path.split('/').last.startsWith('$appId-')) (element) => element.path.split('/').last.startsWith('$appId-'))