]> git.basschouten.com Git - openhab-addons.git/commitdiff
[homematic] checkstyle fixes (#15604)
authorlsiepel <leosiepel@gmail.com>
Fri, 22 Sep 2023 21:25:06 +0000 (23:25 +0200)
committerGitHub <noreply@github.com>
Fri, 22 Sep 2023 21:25:06 +0000 (23:25 +0200)
Signed-off-by: Leo Siepel <leosiepel@gmail.com>
16 files changed:
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/common/HomematicConfig.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/communicator/message/XmlRpcRequest.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/communicator/message/XmlRpcResponse.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/communicator/parser/DisplayOptionsParser.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/communicator/virtual/BatteryTypeVirtualDatapointHandler.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonVirtualDatapointHandler.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/converter/type/AbstractTypeConverter.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/converter/type/QuantityTypeConverter.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/discovery/eq3udp/Eq3UdpRequest.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/handler/HomematicThingHandler.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/handler/SimplePortPool.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/misc/MiscUtils.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/internal/type/MetadataUtils.java
bundles/org.openhab.binding.homematic/src/main/java/org/openhab/binding/homematic/type/HomematicThingTypeExcluder.java
bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/converter/ConvertFromBindingTest.java
bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/converter/ConvertToBindingTest.java

index e4ad10af7ce12f703c8df2690473765066592a75..d405f734baf8cba1f9fcbfa86d4bae8e75811ba4 100644 (file)
@@ -58,7 +58,6 @@ public class HomematicConfig {
     private int bufferSize = 2048;
 
     private HmGatewayInfo gatewayInfo;
-    private int callbackRegistrationRetries;
     private int callbackRegTimeout;
 
     /**
index 05ea0fe4f4001c26af27dce146e20ab70e12366e..af517dcf324c1ac0250a436ab6dca70b51fee9a2 100644 (file)
@@ -39,7 +39,7 @@ public class XmlRpcRequest implements RpcRequest<String> {
     private List<Object> parms;
     private StringBuilder sb;
     private TYPE type;
-    public static SimpleDateFormat xmlRpcDateFormat = new SimpleDateFormat("yyyyMMdd'T'HH:mm:ss");
+    public static final SimpleDateFormat XML_RPC_DATEFORMAT = new SimpleDateFormat("yyyyMMdd'T'HH:mm:ss");
 
     public XmlRpcRequest(String methodName) {
         this(methodName, TYPE.REQUEST);
@@ -135,7 +135,9 @@ public class XmlRpcRequest implements RpcRequest<String> {
             } else if (clazz == Boolean.class) {
                 tag("boolean", ((Boolean) value).booleanValue() ? "1" : "0");
             } else if (clazz == Date.class) {
-                tag("dateTime.iso8601", xmlRpcDateFormat.format(((Date) value)));
+                synchronized (XML_RPC_DATEFORMAT) {
+                    tag("dateTime.iso8601", XML_RPC_DATEFORMAT.format(((Date) value)));
+                }
             } else if (value instanceof Calendar calendar) {
                 generateValue(calendar.getTime());
             } else if (value instanceof byte[] bytes) {
index ae5aa4f2ffe76be90c446f808fb9cbaeea3eee60..a993efcf7f683b45dd9aa897ee09a446ac5f2416 100644 (file)
@@ -149,7 +149,7 @@ public class XmlRpcResponse implements RpcResponse {
                     break;
                 case "datetime.iso8601":
                     try {
-                        data.add(XmlRpcRequest.xmlRpcDateFormat.parse(currentValue));
+                        data.add(XmlRpcRequest.XML_RPC_DATEFORMAT.parse(currentValue));
                     } catch (ParseException ex) {
                         throw new SAXException(ex.getMessage(), ex);
                     }
index 31222c35409259cf005a55520adc29ddf66a1b7a..8d5c2c25eaf2cb2986980dd828ad37fb47040035 100644 (file)
@@ -34,7 +34,7 @@ import org.slf4j.LoggerFactory;
 
 public class DisplayOptionsParser extends CommonRpcParser<Object, Void> {
     private final Logger logger = LoggerFactory.getLogger(DisplayOptionsParser.class);
-    private static final String[] onOff = new String[] { "ON", "OFF" };
+    private static final String[] ON_OFF = new String[] { "ON", "OFF" };
     private static final int IDX_NOT_FOUND = -1;
     private HmChannel channel;
     private String text;
@@ -128,7 +128,7 @@ public class DisplayOptionsParser extends CommonRpcParser<Object, Void> {
             String[] dpOpts = dp.getOptions();
             String[] options = new String[dpOpts.length - 1];
             options = Arrays.copyOfRange(dpOpts, 1, dpOpts.length);
-            for (String onOffString : onOff) {
+            for (String onOffString : ON_OFF) {
                 int onIdx = findInArray(options, onOffString);
                 if (onIdx != IDX_NOT_FOUND) {
                     options[onIdx] = datapointName + "_" + onOffString;
index ea50216986d1e70685ad0926acf249fcf641ddde..af8b84c0704470d734d020301de1d713efe16a51 100644 (file)
@@ -33,12 +33,12 @@ import org.slf4j.LoggerFactory;
 public class BatteryTypeVirtualDatapointHandler extends AbstractVirtualDatapointHandler {
     private final Logger logger = LoggerFactory.getLogger(BatteryTypeVirtualDatapointHandler.class);
 
-    private static final Properties batteries = new Properties();
+    private static final Properties BATT_PROPERTIES = new Properties();
 
     public BatteryTypeVirtualDatapointHandler() {
         Bundle bundle = FrameworkUtil.getBundle(getClass());
         try (InputStream stream = bundle.getResource("homematic/batteries.properties").openStream()) {
-            batteries.load(stream);
+            BATT_PROPERTIES.load(stream);
         } catch (IllegalStateException | IOException e) {
             logger.warn("The resource homematic/batteries.properties could not be loaded! Battery types not available",
                     e);
@@ -52,7 +52,7 @@ public class BatteryTypeVirtualDatapointHandler extends AbstractVirtualDatapoint
 
     @Override
     public void initialize(HmDevice device) {
-        String batteryType = batteries.getProperty(device.getType());
+        String batteryType = BATT_PROPERTIES.getProperty(device.getType());
         if (batteryType != null) {
             addDatapoint(device, 0, getName(), HmValueType.STRING, batteryType, true);
         }
index 36a9c49f093b3e7e11ddeef5276f5c239492ee75..5caa73d36fdf3cb07d0cdc48848c35ebd5a30593 100644 (file)
@@ -22,13 +22,12 @@ import org.openhab.binding.homematic.internal.model.HmDatapoint;
 import org.openhab.binding.homematic.internal.model.HmDevice;
 import org.openhab.binding.homematic.internal.model.HmValueType;
 import org.openhab.core.thing.CommonTriggerEvents;
-import org.openhab.core.thing.DefaultSystemChannelTypeProvider;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
  * A virtual String datapoint which adds a BUTTON datapoint. It will forward key events to the
- * system channel {@link DefaultSystemChannelTypeProvider#SYSTEM_BUTTON}.
+ * system channel {@link org.openhab.core.thing.DefaultSystemChannelTypeProvider#SYSTEM_BUTTON}.
  *
  * @author Michael Reitler - Initial contribution
  */
index 0374b25f113686145a736ed722452b70d988af19..288eee826c1eeae76699cc5328fe86da77e24faf 100644 (file)
@@ -43,15 +43,15 @@ public abstract class AbstractTypeConverter<T extends State> implements TypeConv
     /**
      * Defines all devices where the state datapoint must be inverted.
      */
-    private static final List<StateInvertInfo> stateInvertDevices = new ArrayList<>(3);
+    private static final List<StateInvertInfo> STATE_INVERT_INFO_LIST = new ArrayList<>(3);
 
     static {
-        stateInvertDevices.add(new StateInvertInfo(DEVICE_TYPE_SHUTTER_CONTACT));
-        stateInvertDevices.add(new StateInvertInfo(DEVICE_TYPE_SHUTTER_CONTACT_2));
-        stateInvertDevices.add(new StateInvertInfo(DEVICE_TYPE_INCLINATION_SENSOR));
-        stateInvertDevices.add(new StateInvertInfo(DEVICE_TYPE_WIRED_IO_MODULE, 15, 26));
-        stateInvertDevices.add(new StateInvertInfo(DEVICE_TYPE_MAX_WINDOW_SENSOR));
-        stateInvertDevices.add(new StateInvertInfo(DEVICE_TYPE_SHUTTER_CONTACT_INTERFACE));
+        STATE_INVERT_INFO_LIST.add(new StateInvertInfo(DEVICE_TYPE_SHUTTER_CONTACT));
+        STATE_INVERT_INFO_LIST.add(new StateInvertInfo(DEVICE_TYPE_SHUTTER_CONTACT_2));
+        STATE_INVERT_INFO_LIST.add(new StateInvertInfo(DEVICE_TYPE_INCLINATION_SENSOR));
+        STATE_INVERT_INFO_LIST.add(new StateInvertInfo(DEVICE_TYPE_WIRED_IO_MODULE, 15, 26));
+        STATE_INVERT_INFO_LIST.add(new StateInvertInfo(DEVICE_TYPE_MAX_WINDOW_SENSOR));
+        STATE_INVERT_INFO_LIST.add(new StateInvertInfo(DEVICE_TYPE_SHUTTER_CONTACT_INTERFACE));
     }
 
     /**
@@ -59,7 +59,7 @@ public abstract class AbstractTypeConverter<T extends State> implements TypeConv
      */
     protected boolean isStateInvertDatapoint(HmDatapoint dp) {
         if (DATAPOINT_NAME_STATE.equals(dp.getName())) {
-            for (StateInvertInfo stateInvertInfo : stateInvertDevices) {
+            for (StateInvertInfo stateInvertInfo : STATE_INVERT_INFO_LIST) {
                 if (stateInvertInfo.isToInvert(dp)) {
                     return true;
                 }
index 5a51f9df7a713aa676ef2eb9c953bf21ed2a540e..37fd497d8778d7d31f3e8edf4b9eb26203ef6ef9 100644 (file)
@@ -32,11 +32,11 @@ import org.openhab.core.types.Type;
 public class QuantityTypeConverter extends AbstractTypeConverter<QuantityType<? extends Quantity<?>>> {
 
     // this literal is required because some gateway types are mixing up encodings in their XML-RPC responses
-    private final String UNCORRECT_ENCODED_CELSIUS = "°C";
+    private static final String UNCORRECT_ENCODED_CELSIUS = "°C";
 
     // "100%" is a commonly used "unit" in datapoints. Generated channel-type is of DecimalType,
     // but clients may define a QuantityType if preferred
-    private final String HUNDRED_PERCENT = "100%";
+    private static final String HUNDRED_PERCENT = "100%";
 
     @Override
     protected boolean toBindingValidation(HmDatapoint dp, Class<? extends Type> typeClass) {
index 7d853ce8ba9b897d2cb4e75cd562527273a6b3a5..cdfa1b20eb5603fb23d4db16a01a548e3de67912 100644 (file)
@@ -26,7 +26,7 @@ public class Eq3UdpRequest {
     private static final byte UDP_IDENTIFY = 73;
     private static final byte UDP_SEPARATOR = 0;
 
-    private static final int senderId = new Random().nextInt() & 0xFFFFFF;
+    private static final int SENDER_ID = new Random().nextInt() & 0xFFFFFF;
     private static final String EQ3_DEVICE_TYPE = "eQ3-*";
     private static final String EQ3_SERIAL_NUMBER = "*";
 
@@ -41,7 +41,7 @@ public class Eq3UdpRequest {
      * Returns the sender id.
      */
     public static int getSenderId() {
-        return senderId;
+        return SENDER_ID;
     }
 
     /**
@@ -51,7 +51,7 @@ public class Eq3UdpRequest {
         ByteArrayOutputStream baos = new ByteArrayOutputStream();
         baos.write(2);
         for (int i = 2; i >= 0; i--) {
-            byte temp = (byte) (senderId >> i * 8 & 0xFF);
+            byte temp = (byte) (SENDER_ID >> i * 8 & 0xFF);
             baos.write(temp);
         }
         baos.write(UDP_SEPARATOR);
index de3b66aa4550c89e5438a53210320f08911890b4..9289660a7cec81a702536f424e6eb1dcd5dd738c 100644 (file)
@@ -27,7 +27,6 @@ import java.util.Objects;
 import java.util.concurrent.Future;
 
 import org.eclipse.jdt.annotation.Nullable;
-import org.openhab.binding.homematic.internal.HomematicBindingConstants;
 import org.openhab.binding.homematic.internal.common.HomematicConfig;
 import org.openhab.binding.homematic.internal.communicator.HomematicGateway;
 import org.openhab.binding.homematic.internal.converter.ConverterException;
@@ -372,8 +371,10 @@ public class HomematicThingHandler extends BaseThingHandler {
      * @param datapointName The datapoint that will be updated on the device
      * @param currentValue The current value of the datapoint
      * @param newValue The value that will be sent to the device
-     * @return The rxMode ({@link HomematicBindingConstants#RX_BURST_MODE "BURST"} for burst mode,
-     *         {@link HomematicBindingConstants#RX_WAKEUP_MODE "WAKEUP"} for wakeup mode, or null for the default mode)
+     * @return The rxMode ({@link org.openhab.binding.homematic.internal.HomematicBindingConstants#RX_BURST_MODE
+     *         "BURST"} for burst mode,
+     *         {@link org.openhab.binding.homematic.internal.HomematicBindingConstants#RX_WAKEUP_MODE "WAKEUP"} for
+     *         wakeup mode, or null for the default mode)
      */
     protected String getRxModeForDatapointTransmission(String datapointName, Object currentValue, Object newValue) {
         return null;
index cab26f1c2548ceed0e1fe403c8090cbb5f199ccc..f33bd5de2a01dfa2afaec528ee7f5ba23a4a7ae9 100644 (file)
@@ -22,7 +22,7 @@ import java.util.List;
  * @author Gerhard Riegler - Initial contribution
  */
 public class SimplePortPool {
-    private static int START_PORT = 9125;
+    private static int startPort = 9125;
 
     private List<PortInfo> availablePorts = new ArrayList<>();
 
@@ -48,9 +48,9 @@ public class SimplePortPool {
         }
 
         PortInfo portInfo = new PortInfo();
-        while (isPortInUse(START_PORT++)) {
+        while (isPortInUse(startPort++)) {
         }
-        portInfo.port = START_PORT - 1;
+        portInfo.port = startPort - 1;
         portInfo.free = false;
         availablePorts.add(portInfo);
 
index de317d63fe1f2a4aaaf4d7b251caf922808edaaa..40cff3a0ffb0d9626b52fa85f81ab38c14e5a382 100644 (file)
@@ -21,7 +21,7 @@ import org.slf4j.LoggerFactory;
  * @author Gerhard Riegler - Initial contribution
  */
 public class MiscUtils {
-    private static final Logger logger = LoggerFactory.getLogger(MiscUtils.class);
+    private static final Logger LOGGER = LoggerFactory.getLogger(MiscUtils.class);
 
     /**
      * Replaces invalid characters of the text to fit into an openHAB UID.
@@ -32,7 +32,7 @@ public class MiscUtils {
         }
         String cleanedText = text.replaceAll("[^A-Za-z0-9_-]", replaceChar);
         if (!text.equals(cleanedText)) {
-            logger.info("{} '{}' contains invalid characters, new {} '{}'", textType, text, textType, cleanedText);
+            LOGGER.info("{} '{}' contains invalid characters, new {} '{}'", textType, text, textType, cleanedText);
         }
         return cleanedText;
     }
index 588b0a0ace362f8b496b10fcc1e55f07166ca6fd..4ee82f6d86020a6c2a638e69c843f998448ca126 100644 (file)
@@ -47,7 +47,7 @@ import org.slf4j.LoggerFactory;
  */
 
 public class MetadataUtils {
-    private static final Logger logger = LoggerFactory.getLogger(MetadataUtils.class);
+    private static final Logger LOGGER = LoggerFactory.getLogger(MetadataUtils.class);
     private static ResourceBundle descriptionsBundle;
     private static Map<String, String> descriptions = new HashMap<>();
     private static Map<String, Set<String>> standardDatapoints = new HashMap<>();
@@ -98,7 +98,7 @@ public class MetadataUtils {
                 }
             }
         } catch (IllegalStateException | IOException e) {
-            logger.warn("Can't load standard-datapoints.properties file!", e);
+            LOGGER.warn("Can't load standard-datapoints.properties file!", e);
         }
     }
 
@@ -112,7 +112,7 @@ public class MetadataUtils {
     public static <T> List<T> generateOptions(HmDatapoint dp, OptionsBuilder<T> optionsBuilder) {
         List<T> options = null;
         if (dp.getOptions() == null) {
-            logger.warn("No options for ENUM datapoint {}", dp);
+            LOGGER.warn("No options for ENUM datapoint {}", dp);
         } else {
             options = new ArrayList<>();
             for (int i = 0; i < dp.getOptions().length; i++) {
@@ -214,8 +214,8 @@ public class MetadataUtils {
             }
             sb.append(key).append(", ");
         }
-        if (logger.isTraceEnabled()) {
-            logger.trace("Description not found for: {}", sb.toString().substring(0, sb.length() - 2));
+        if (LOGGER.isTraceEnabled()) {
+            LOGGER.trace("Description not found for: {}", sb.toString().substring(0, sb.length() - 2));
         }
         return null;
     }
@@ -271,7 +271,7 @@ public class MetadataUtils {
         try {
             return new BigDecimal(number.toString());
         } catch (Exception ex) {
-            logger.warn("Can't create BigDecimal for number: {}", number.toString());
+            LOGGER.warn("Can't create BigDecimal for number: {}", number.toString());
             return null;
         }
     }
index 5a360a2254de30c4c2ad5a264c2b2dbd6736d78c..e63d1b287da86d88301c559be9710838b1811aac 100644 (file)
@@ -18,7 +18,6 @@ import java.util.Set;
 import org.openhab.core.thing.ThingTypeUID;
 import org.openhab.core.thing.type.ChannelGroupTypeUID;
 import org.openhab.core.thing.type.ChannelTypeUID;
-import org.openhab.core.thing.type.ThingType;
 
 /**
  * Allows external definition of
@@ -35,7 +34,7 @@ public interface HomematicThingTypeExcluder {
      * are henceforth responsible to ...
      * <li>provide any excluded ThingType on their own - e.g. in a custom
      * {@link org.openhab.core.thing.binding.ThingTypeProvider} or by
-     * defining those {@link ThingType}s in XML.</li>
+     * defining those {@link org.openhab.core.thing.type.ThingType}s in XML.</li>
      * <li>provide {@link org.openhab.core.thing.type.ChannelType}s
      * which are introduced by the provided thing-types</li>
      * <li>ensure compatibility and completeness of those thing-types (for any
@@ -55,7 +54,7 @@ public interface HomematicThingTypeExcluder {
      * {@link HomematicThingTypeExcluder} or not
      *
      * @param thingType a specific ThingType, specified by its {@link ThingTypeUID}
-     * @return <i>true</i>, if the {@link ThingType} is excluded
+     * @return <i>true</i>, if the {@link org.openhab.core.thing.type.ThingType} is excluded
      */
     boolean isThingTypeExcluded(ThingTypeUID thingType);
 
index 115d55badf05e4f09141f235acce8659c0db356d..4b7e8ef68e2f16352cdb53298cc801bed138842e 100644 (file)
@@ -16,18 +16,17 @@ import static org.hamcrest.CoreMatchers.*;
 import static org.hamcrest.MatcherAssert.assertThat;
 
 import org.junit.jupiter.api.Test;
-import org.openhab.binding.homematic.internal.converter.type.AbstractTypeConverter;
 import org.openhab.binding.homematic.internal.model.HmDatapoint;
 import org.openhab.core.library.types.DecimalType;
 import org.openhab.core.library.types.QuantityType;
 import org.openhab.core.library.unit.ImperialUnits;
+import org.openhab.core.library.unit.SIUnits;
 import org.openhab.core.library.unit.Units;
 import org.openhab.core.types.State;
 
-import tech.units.indriya.unit.UnitDimension;
-
 /**
- * Tests for {@link AbstractTypeConverter#convertFromBinding(HmDatapoint)}.
+ * Tests for
+ * {@link org.openhab.binding.homematic.internal.converter.type.AbstractTypeConverter#convertFromBinding(HmDatapoint)}.
  *
  * @author Michael Reitler - Initial Contribution
  *
@@ -75,20 +74,19 @@ public class ConvertFromBindingTest extends BaseConverterTest {
         floatQuantityDp.setUnit("°C");
         convertedState = temperatureConverter.convertFromBinding(floatQuantityDp);
         assertThat(convertedState, instanceOf(QuantityType.class));
-        assertThat(((QuantityType<?>) convertedState).getDimension(), is(UnitDimension.TEMPERATURE));
+        assertThat(((QuantityType<?>) convertedState).getDimension(), is(equalTo(SIUnits.CELSIUS.getDimension())));
         assertThat(((QuantityType<?>) convertedState).doubleValue(), is(10.5));
         assertThat(((QuantityType<?>) convertedState).toUnit(ImperialUnits.FAHRENHEIT).doubleValue(), is(50.9));
 
         floatQuantityDp.setUnit("°C");
-        assertThat(((QuantityType<?>) convertedState).getDimension(), is(UnitDimension.TEMPERATURE));
+        assertThat(((QuantityType<?>) convertedState).getDimension(), is(equalTo(SIUnits.CELSIUS.getDimension())));
         assertThat(((QuantityType<?>) convertedState).doubleValue(), is(10.5));
 
         integerQuantityDp.setValue(50000);
         integerQuantityDp.setUnit("mHz");
         convertedState = frequencyConverter.convertFromBinding(integerQuantityDp);
         assertThat(convertedState, instanceOf(QuantityType.class));
-        assertThat(((QuantityType<?>) convertedState).getDimension(),
-                is(UnitDimension.NONE.divide(UnitDimension.TIME)));
+        assertThat(((QuantityType<?>) convertedState).getDimension(), is(equalTo(Units.HERTZ.getDimension())));
         assertThat(((QuantityType<?>) convertedState).intValue(), is(50000));
         assertThat(((QuantityType<?>) convertedState).toUnit(Units.HERTZ).intValue(), is(50));
 
@@ -96,7 +94,7 @@ public class ConvertFromBindingTest extends BaseConverterTest {
         floatQuantityDp.setUnit("100%");
         convertedState = timeConverter.convertFromBinding(floatQuantityDp);
         assertThat(convertedState, instanceOf(QuantityType.class));
-        assertThat(((QuantityType<?>) convertedState).getDimension(), is(UnitDimension.NONE));
+        assertThat(((QuantityType<?>) convertedState).getDimension(), is(equalTo(Units.ONE.getDimension())));
         assertThat(((QuantityType<?>) convertedState).doubleValue(), is(70.0));
         assertThat(((QuantityType<?>) convertedState).getUnit(), is(Units.PERCENT));
         assertThat(((QuantityType<?>) convertedState).toUnit(Units.ONE).doubleValue(), is(0.7));
index 6bd48909c4dd5a22c2fc188853c39f81c8c36775..8f60c567e78e48e430d744956968c0d808660cdf 100644 (file)
@@ -17,15 +17,14 @@ import static org.hamcrest.MatcherAssert.assertThat;
 import static org.junit.jupiter.api.Assertions.assertThrows;
 
 import org.junit.jupiter.api.Test;
-import org.openhab.binding.homematic.internal.converter.type.AbstractTypeConverter;
 import org.openhab.binding.homematic.internal.converter.type.DecimalTypeConverter;
 import org.openhab.binding.homematic.internal.converter.type.QuantityTypeConverter;
-import org.openhab.binding.homematic.internal.model.HmDatapoint;
 import org.openhab.core.library.types.DecimalType;
 import org.openhab.core.library.types.QuantityType;
 
 /**
- * Tests for {@link AbstractTypeConverter#convertToBinding(org.openhab.core.types.Type, HmDatapoint)}.
+ * Tests for
+ * {@link org.openhab.binding.homematic.internal.converter.type.AbstractTypeConverter#convertToBinding(org.openhab.core.types.Type, HmDatapoint)}.
  *
  * @author Michael Reitler - Initial Contribution
  *