Skip to content

Commit 823fa38

Browse files
committed
Remove unused method
1 parent 18acea3 commit 823fa38

File tree

1 file changed

+0
-8
lines changed
  • Plugins/Flow.Launcher.Plugin.Program/Programs

1 file changed

+0
-8
lines changed

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,6 @@ private static IEnumerable<Package> CurrentUserPackages()
241241

242242
private static List<FileSystemWatcher> _watchers = new();
243243

244-
private static void GenerateWatcher(string path)
245-
{
246-
var watcher = new FileSystemWatcher(path);
247-
watcher.Created += static (_, _) => Task.Run(Main.IndexUwpPrograms);
248-
watcher.Deleted += static (_, _) => Task.Run(Main.IndexUwpPrograms);
249-
watcher.EnableRaisingEvents = true;
250-
}
251-
252244
public static void WatchPackageChange()
253245
{
254246
if (Environment.OSVersion.Version.Build >= 19041)

0 commit comments

Comments
 (0)