Fix a concurrent modification problem introduced inadvertently.
This commit is contained in:
parent
558b068895
commit
a3f431b6b8
|
|
@ -94,7 +94,7 @@ internal class MatchTrieSet(val rule: Rule, val profiler: Profiler?) {
|
|||
this.tries.addAll(copyTries)
|
||||
this.tries.addAll(relevantTries)
|
||||
|
||||
return tries.asSequence().flatMap { t -> t.matches() }
|
||||
return relevantTries.asSequence().flatMap { t -> t.matches() }
|
||||
}
|
||||
|
||||
inner class PartialMatchTrie(val activeOcc: ConstraintOccurrence,
|
||||
|
|
|
|||
Loading…
Reference in New Issue