Skip to content

Commit

Permalink
[km200] Remove org.apache.commons (#14411)
Browse files Browse the repository at this point in the history
Signed-off-by: lsiepel <leosiepel@gmail.com>
  • Loading branch information
lsiepel committed Feb 19, 2023
1 parent d168d04 commit 77f7334
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 77f7334

Please sign in to comment.