From 5350a823d06dd7da7bc24e774ab620e284446e7e Mon Sep 17 00:00:00 2001 From: Simon Kaufmann Date: Fri, 26 Aug 2016 09:06:58 +0200 Subject: [PATCH] fix method name in DiscoveryServiceRegistryImpl ...as it was accidentally called removeInbox instead of unsetInbox fixes #2038 Signed-off-by: Simon Kaufmann --- .../config/discovery/internal/DiscoveryServiceRegistryImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/config/org.eclipse.smarthome.config.discovery/src/main/java/org/eclipse/smarthome/config/discovery/internal/DiscoveryServiceRegistryImpl.java b/bundles/config/org.eclipse.smarthome.config.discovery/src/main/java/org/eclipse/smarthome/config/discovery/internal/DiscoveryServiceRegistryImpl.java index 2238c438c87..b2e93f48b4b 100644 --- a/bundles/config/org.eclipse.smarthome.config.discovery/src/main/java/org/eclipse/smarthome/config/discovery/internal/DiscoveryServiceRegistryImpl.java +++ b/bundles/config/org.eclipse.smarthome.config.discovery/src/main/java/org/eclipse/smarthome/config/discovery/internal/DiscoveryServiceRegistryImpl.java @@ -474,7 +474,7 @@ protected void setInbox(Inbox inbox) { this.inbox = inbox; } - protected void removeInbox(Inbox inbox) { + protected void unsetInbox(Inbox inbox) { this.inbox = null; }