Merge branch 'RED-6929' into 'master'

RED-6929: Fix Acceptance Tests/Rules

Closes RED-6929

See merge request redactmanager/redaction-service!29
This commit is contained in:
Kilian Schüttler 2023-07-03 21:41:34 +02:00
commit ab282227a8

View File

@ -118,6 +118,9 @@ public class Image implements GenericSemanticNode {
public MatchedRule getMatchedRule() {
if (matchedRuleList.isEmpty()) {
return MatchedRule.empty();
}
return matchedRuleList.peek();
}