From 12904b8c1a09b525992d595de34ccf471eebac06 Mon Sep 17 00:00:00 2001 From: Nadahar Date: Tue, 27 May 2025 08:32:31 +0200 Subject: [PATCH] Accommodate change to RuleRegistry in https://github.com/openhab/openhab-core/pull/4718 (#18705) Signed-off-by: Ravi Nadahar --- .../hueemulation/internal/rest/mocks/DummyRuleRegistry.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bundles/org.openhab.io.hueemulation/src/test/java/org/openhab/io/hueemulation/internal/rest/mocks/DummyRuleRegistry.java b/bundles/org.openhab.io.hueemulation/src/test/java/org/openhab/io/hueemulation/internal/rest/mocks/DummyRuleRegistry.java index c0ce0c10274..50e08df1c34 100644 --- a/bundles/org.openhab.io.hueemulation/src/test/java/org/openhab/io/hueemulation/internal/rest/mocks/DummyRuleRegistry.java +++ b/bundles/org.openhab.io.hueemulation/src/test/java/org/openhab/io/hueemulation/internal/rest/mocks/DummyRuleRegistry.java @@ -99,4 +99,8 @@ public class DummyRuleRegistry implements RuleRegistry { public Collection getByTags(String... tags) { return Collections.emptyList(); } + + @Override + public void regenerateFromTemplate(String ruleUID) { + } }