RED-6929: Fix Acceptance Tests/Rules

This commit is contained in:
Kilian Schüttler 2023-07-03 21:41:34 +02:00
parent cc41838b11
commit d5bb7d8a0a

View File

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