mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Rename Searcher class to IndexSearcher- more descriptive
This commit is contained in:
parent
80380b230a
commit
ac2d318412
2 changed files with 3 additions and 3 deletions
|
|
@ -53,7 +53,7 @@ namespace Flow.Launcher.Plugin.Explorer
|
|||
|
||||
var queryConstructor = new QueryConstructor(_settings);
|
||||
|
||||
var searcher = new Searcher(Context);
|
||||
var searcher = new IndexSearcher(Context);
|
||||
|
||||
return searcher.WindowsIndexSearch(query.Search,
|
||||
queryConstructor.CreateQueryHelper().ConnectionString,
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using System.Diagnostics;
|
|||
|
||||
namespace Flow.Launcher.Plugin.Explorer.Search.WindowsIndex
|
||||
{
|
||||
internal class Searcher
|
||||
internal class IndexSearcher
|
||||
{
|
||||
public OleDbConnection conn;
|
||||
|
||||
|
|
@ -20,7 +20,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search.WindowsIndex
|
|||
|
||||
private readonly object _lock = new object();
|
||||
|
||||
public Searcher(PluginInitContext context)
|
||||
public IndexSearcher(PluginInitContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
Loading…
Reference in a new issue