Skip to content

Commit

Permalink
[loxone] Removed Guava dependency (#4111)
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Weitkamp <[email protected]>
  • Loading branch information
cweitkamp authored and martinvw committed Jan 23, 2019
1 parent b610681 commit 2564a78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Export-Package:
org.openhab.binding.loxone,
org.openhab.binding.loxone.handler
Import-Package:
com.google.common.collect,
com.google.gson,
com.google.gson.annotations,
org.apache.commons.codec,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
*/
package org.openhab.binding.loxone.internal;

import java.util.Collections;
import java.util.Set;

import org.eclipse.smarthome.core.thing.Thing;
Expand All @@ -24,8 +25,6 @@
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;

import com.google.common.collect.Sets;

/**
* Factory responsible for creating Loxone things (Miniservers) and their handlers ({@link LoxoneMiniserverHandler}
*
Expand All @@ -34,8 +33,8 @@
@Component(service = ThingHandlerFactory.class, configurationPid = "binding.loxone")
public class LoxoneHandlerFactory extends BaseThingHandlerFactory {

public static final Set<ThingTypeUID> SUPPORTED_THING_TYPES_UIDS = Sets
.newHashSet(LoxoneBindingConstants.THING_TYPE_MINISERVER);
public static final Set<ThingTypeUID> SUPPORTED_THING_TYPES_UIDS = Collections
.singleton(LoxoneBindingConstants.THING_TYPE_MINISERVER);

private LoxoneDynamicStateDescriptionProvider dynamicStateDescriptionProvider;

Expand Down

0 comments on commit 2564a78

Please sign in to comment.