Rename Searcher class to IndexSearcher- more descriptive

This commit is contained in:
Jeremy Wu 2020-05-19 13:54:56 +10:00
parent 80380b230a
commit ac2d318412
2 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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;
}