提交 68afb7f7 编写于 作者: C CyrusNajmabadi

Don't bother with teh fuzzy matching check if the matcher was created with...

Don't bother with teh fuzzy matching check if the matcher was created with fuzzy matching not supported.
上级 fa803a66
......@@ -51,6 +51,11 @@ public override bool AddMatches(string container, ArrayBuilder<PatternMatch> mat
private bool AddMatches(string container, ArrayBuilder<PatternMatch> matches, bool fuzzyMatch)
{
if (fuzzyMatch && !_allowFuzzyMatching)
{
return false;
}
var tempContainerMatches = ArrayBuilder<PatternMatch>.GetInstance();
try
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册