Skip to content

Commit 59c355e

Browse files
remove unused property
1 parent 1e8cc9a commit 59c355e

File tree

1 file changed

+1
-3
lines changed
  • Plugins/Flow.Launcher.Plugin.Program/Programs

1 file changed

+1
-3
lines changed

Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ private void InitializeAppInfo()
5959
List<AppxPackageHelper.IAppxManifestApplication> _apps = AppxPackageHelper.GetAppsFromManifest(stream);
6060

6161
Apps = _apps.Select(x => new Application(x, this))
62-
.Where(a => a.AppListEntry != "none"
63-
&& !string.IsNullOrEmpty(a.UserModelId)
62+
.Where(a => !string.IsNullOrEmpty(a.UserModelId)
6463
&& !string.IsNullOrEmpty(a.DisplayName))
6564
.ToArray();
6665
}
@@ -278,7 +277,6 @@ public override int GetHashCode()
278277
[Serializable]
279278
public class Application : IProgram
280279
{
281-
public string AppListEntry { get; set; }
282280
public string UniqueIdentifier { get; set; }
283281
public string DisplayName { get; set; }
284282
public string Description { get; set; }

0 commit comments

Comments
 (0)