mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix test project build issue
This commit is contained in:
parent
2a423f09bb
commit
ff110b3c49
1 changed files with 2 additions and 2 deletions
|
|
@ -14,9 +14,9 @@ namespace Flow.Launcher.Infrastructure
|
|||
|
||||
private readonly IAlphabet _alphabet;
|
||||
|
||||
public StringMatcher()
|
||||
public StringMatcher(IAlphabet alphabet = null)
|
||||
{
|
||||
_alphabet = Ioc.Default.GetRequiredService<IAlphabet>();
|
||||
_alphabet = alphabet ?? Ioc.Default.GetRequiredService<IAlphabet>();
|
||||
}
|
||||
|
||||
public static StringMatcher Instance { get; internal set; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue