import java.util.Calendar;
import java.util.Date;
import java.util.IllegalFormatException;
+import java.util.Objects;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
-import org.apache.commons.lang3.StringUtils;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
import org.openhab.binding.exec.internal.ExecWhitelistWatchService;
import org.openhab.core.transform.TransformationService;
import org.openhab.core.types.Command;
import org.openhab.core.types.RefreshType;
+import org.openhab.core.util.StringUtils;
import org.osgi.framework.BundleContext;
import org.osgi.framework.FrameworkUtil;
import org.slf4j.Logger;
outputBuilder.append(errorBuilder.toString());
- String transformedResponse = StringUtils.chomp(outputBuilder.toString());
+ String transformedResponse = Objects.requireNonNull(StringUtils.chomp(outputBuilder.toString()));
String transformation = (String) getConfig().get(TRANSFORM);
if (transformation != null && transformation.length() > 0) {