diff --git a/DuplicateFinderEngine/ScanEngine.cs b/DuplicateFinderEngine/ScanEngine.cs index 40803736..3155bae6 100644 --- a/DuplicateFinderEngine/ScanEngine.cs +++ b/DuplicateFinderEngine/ScanEngine.cs @@ -1,6 +1,5 @@ using DuplicateFinderEngine.Data; using System; -using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; diff --git a/VideoDuplicateFinderLinux/MainWindowVM.cs b/VideoDuplicateFinderLinux/MainWindowVM.cs index 929e79ec..2533c728 100644 --- a/VideoDuplicateFinderLinux/MainWindowVM.cs +++ b/VideoDuplicateFinderLinux/MainWindowVM.cs @@ -267,13 +267,6 @@ private static Func BuildFilter(string searchText) IsBusyText = Properties.Resources.CleaningDatabase; Scanner.CleanupDatabase(); }); - public ReactiveCommand OpenItemInFolderCommand => ReactiveCommand.Create(currentItem => { - System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo { - FileName = currentItem.Folder, - UseShellExecute = true, - Verb = "open" - }); - }); public ReactiveCommand RemoveIncludesFromListCommand => ReactiveCommand.Create(lbox => { while (lbox.SelectedItems.Count > 0) Includes.Remove((string)lbox.SelectedItems[0]);