Remove SmartHome leftovers (#9283)

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2020-12-08 18:03:49 +01:00
committed by GitHub
parent af4371844d
commit d2e5c3e7dd
64 changed files with 132 additions and 139 deletions

View File

@@ -41,7 +41,7 @@ import org.slf4j.LoggerFactory;
* @author Gaël L'hopital
* @author Markus Rathgeb - drop usage of Guava
*/
@Component(service = TransformationService.class, property = { "smarthome.transform=SCALE" })
@Component(service = TransformationService.class, property = { "openhab.transform=SCALE" })
public class ScaleTransformationService extends AbstractFileTransformationService<Map<Range, String>> {
private final Logger logger = LoggerFactory.getLogger(ScaleTransformationService.class);

View File

@@ -60,7 +60,7 @@ public class ScaleTransformationProfileFactory implements ProfileFactory, Profil
return Arrays.asList(ScaleTransformationProfile.PROFILE_TYPE_UID);
}
@Reference(target = "(smarthome.transform=SCALE)")
@Reference(target = "(openhab.transform=SCALE)")
public void addTransformationService(TransformationService service) {
this.service = service;
}