]> git.basschouten.com Git - openhab-addons.git/commitdiff
[velux] eliminate dependency on org.apache.commons.lang.StringUtils (#8626)
authorAndrew Fiddian-Green <software@whitebear.ch>
Thu, 1 Oct 2020 16:12:16 +0000 (17:12 +0100)
committerGitHub <noreply@github.com>
Thu, 1 Oct 2020 16:12:16 +0000 (09:12 -0700)
Signed-off-by: Andrew Fiddian-Green <software@whitebear.ch>
bundles/org.openhab.binding.velux/src/main/java/org/openhab/binding/velux/internal/VeluxBinding.java

index b483c9ff8fd13eab5cdf0e502ade846ee7c0410d..287234b6074e0c03affb1c05ea26e1b45e18c724 100644 (file)
@@ -12,8 +12,6 @@
  */
 package org.openhab.binding.velux.internal;
 
-import static org.apache.commons.lang.StringUtils.isNotBlank;
-
 import java.lang.reflect.Field;
 
 import org.eclipse.jdt.annotation.NonNullByDefault;
@@ -65,11 +63,11 @@ public class VeluxBinding extends VeluxBridgeConfiguration {
             logger.debug("No configuration found, using default values.");
         } else {
             logger.trace("VeluxBinding(): checking {}.", VeluxBridgeConfiguration.BRIDGE_PROTOCOL);
-            if (isNotBlank(uncheckedConfiguration.protocol)) {
+            if (!uncheckedConfiguration.protocol.isBlank()) {
                 this.protocol = uncheckedConfiguration.protocol;
             }
             logger.trace("VeluxBinding(): checking {}.", VeluxBridgeConfiguration.BRIDGE_IPADDRESS);
-            if (isNotBlank(uncheckedConfiguration.ipAddress)) {
+            if (!uncheckedConfiguration.ipAddress.isBlank()) {
                 this.ipAddress = uncheckedConfiguration.ipAddress;
             }
             logger.trace("VeluxBinding(): checking {}.", VeluxBridgeConfiguration.BRIDGE_TCPPORT);
@@ -77,7 +75,7 @@ public class VeluxBinding extends VeluxBridgeConfiguration {
                 this.tcpPort = uncheckedConfiguration.tcpPort;
             }
             logger.trace("VeluxBinding(): checking {}.", VeluxBridgeConfiguration.BRIDGE_PASSWORD);
-            if (isNotBlank(uncheckedConfiguration.password)) {
+            if (!uncheckedConfiguration.password.isBlank()) {
                 this.password = uncheckedConfiguration.password;
             }
             logger.trace("VeluxBinding(): checking {}.", VeluxBridgeConfiguration.BRIDGE_TIMEOUT_MSECS);