mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-25 14:55:55 +01:00
[km200] Remove org.apache.commons (#14411)
Signed-off-by: lsiepel <leosiepel@gmail.com>
This commit is contained in:
parent
d168d045bf
commit
77f73345d2
@ -19,7 +19,6 @@ import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.apache.commons.lang3.ArrayUtils;
|
||||
import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
import org.eclipse.jdt.annotation.Nullable;
|
||||
import org.eclipse.jetty.client.HttpClient;
|
||||
@ -56,11 +55,11 @@ public class KM200Device {
|
||||
protected String charSet = "";
|
||||
|
||||
/* Needed keys for the communication */
|
||||
protected byte[] cryptKeyInit = ArrayUtils.EMPTY_BYTE_ARRAY;
|
||||
protected byte[] cryptKeyPriv = ArrayUtils.EMPTY_BYTE_ARRAY;
|
||||
protected byte[] cryptKeyInit = new byte[0];
|
||||
protected byte[] cryptKeyPriv = new byte[0];
|
||||
|
||||
/* Buderus_MD5Salt */
|
||||
protected byte[] md5Salt = ArrayUtils.EMPTY_BYTE_ARRAY;
|
||||
protected byte[] md5Salt = new byte[0];
|
||||
|
||||
/* Device services */
|
||||
public Map<String, KM200ServiceObject> serviceTreeMap;
|
||||
|
Loading…
Reference in New Issue
Block a user