RED-3061: Logic for value matcher for initials expansion rule is inverted
This commit is contained in:
parent
4f51ef16ed
commit
3329773315
@ -208,7 +208,7 @@ public class Section {
|
||||
|
||||
if (compiledValuePattern != null) {
|
||||
Matcher matcherCompiledValuePattern = compiledValuePat.matcher(entity.getWord());
|
||||
if (!matcherCompiledValuePattern.find()) {
|
||||
if (!matcherCompiledValuePattern.matches()) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user