Remove SmartHome leftovers (#9283)
Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
@@ -52,12 +52,12 @@ public class DSCAlarmBridgeDiscovery extends AbstractDiscoveryService {
|
||||
};
|
||||
|
||||
/**
|
||||
* Method to add an Envisalink Bridge to the Smarthome Inbox.
|
||||
* Method to add an Envisalink Bridge to the Inbox.
|
||||
*
|
||||
* @param ipAddress
|
||||
*/
|
||||
public void addEnvisalinkBridge(String ipAddress) {
|
||||
logger.trace("addBridge(): Adding new Envisalink Bridge on {} to Smarthome inbox", ipAddress);
|
||||
logger.trace("addBridge(): Adding new Envisalink Bridge on {} to inbox", ipAddress);
|
||||
|
||||
String bridgeID = ipAddress.replace('.', '_');
|
||||
Map<String, Object> properties = new HashMap<>(0);
|
||||
@@ -69,7 +69,7 @@ public class DSCAlarmBridgeDiscovery extends AbstractDiscoveryService {
|
||||
thingDiscovered(DiscoveryResultBuilder.create(thingUID).withProperties(properties)
|
||||
.withLabel("EyezOn Envisalink Bridge - " + ipAddress).build());
|
||||
|
||||
logger.trace("addBridge(): '{}' was added to Smarthome inbox.", thingUID);
|
||||
logger.trace("addBridge(): '{}' was added to inbox.", thingUID);
|
||||
} catch (Exception e) {
|
||||
logger.error("addBridge(): Error", e);
|
||||
}
|
||||
|
||||
@@ -71,14 +71,14 @@ public class DSCAlarmDiscoveryService extends AbstractDiscoveryService {
|
||||
}
|
||||
|
||||
/**
|
||||
* Method to add a Thing to the Smarthome Inbox.
|
||||
* Method to add a Thing to the Inbox.
|
||||
*
|
||||
* @param bridge
|
||||
* @param dscAlarmThingType
|
||||
* @param event
|
||||
*/
|
||||
public void addThing(Bridge bridge, DSCAlarmThingType dscAlarmThingType, DSCAlarmEvent event) {
|
||||
logger.trace("addThing(): Adding new DSC Alarm {} to the smarthome inbox", dscAlarmThingType.getLabel());
|
||||
logger.trace("addThing(): Adding new DSC Alarm {} to the inbox", dscAlarmThingType.getLabel());
|
||||
|
||||
ThingUID thingUID = null;
|
||||
String thingID = "";
|
||||
|
||||
Reference in New Issue
Block a user