Revert "Fix test project build issue"

This reverts commit ff110b3c49.
This commit is contained in:
Jack251970 2025-01-13 10:18:35 +08:00
parent ff110b3c49
commit c3f71c213e

View file

@ -14,9 +14,9 @@ namespace Flow.Launcher.Infrastructure
private readonly IAlphabet _alphabet;
public StringMatcher(IAlphabet alphabet = null)
public StringMatcher()
{
_alphabet = alphabet ?? Ioc.Default.GetRequiredService<IAlphabet>();
_alphabet = Ioc.Default.GetRequiredService<IAlphabet>();
}
public static StringMatcher Instance { get; internal set; }