From 33caf4644e82040a1dd910bc9ce50c741f8df946 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Fri, 6 Oct 2023 20:43:06 -0400 Subject: [PATCH] Ran dart fix --- lib/providers/apps_provider.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/providers/apps_provider.dart b/lib/providers/apps_provider.dart index 7c150c6..9acd085 100644 --- a/lib/providers/apps_provider.dart +++ b/lib/providers/apps_provider.dart @@ -738,7 +738,6 @@ class AppsProvider with ChangeNotifier { var naiveStandardVersionDetection = SourceProvider() .getSource(app.url, overrideSource: app.overrideSource) .naiveStandardVersionDetection; - ; // FIRST, COMPARE THE APP'S REPORTED AND REAL INSTALLED VERSIONS, WHERE ONE IS NULL if (installedInfo == null && app.installedVersion != null && !trackOnly) { // App says it's installed but isn't really (and isn't track only) - set to not installed @@ -1101,7 +1100,7 @@ class AppsProvider with ChangeNotifier { } } if (errors.idsByErrorString.isNotEmpty) { - var res = Map(); + var res = {}; res['errors'] = errors; res['updates'] = updates; throw res;