You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In pom.xml, JDK/Java version is specified as '1.8' (v8). However in BytesConnectorResponse.java and CommandExecutorManager.java, Arrays.equals(byte[],int,int,byte[],int,int) is used which was only introduced in JDK/Java v9.
You may not have encountered this error on your machine as a JDK <= 9 would be installed. Fix is simple, please update JDK/Java version to 1.9 in pom.xml.
The text was updated successfully, but these errors were encountered:
In
pom.xml
, JDK/Java version is specified as '1.8' (v8). However inBytesConnectorResponse.java
andCommandExecutorManager.java
, Arrays.equals(byte[],int,int,byte[],int,int) is used which was only introduced in JDK/Java v9.You may not have encountered this error on your machine as a JDK <= 9 would be installed. Fix is simple, please update JDK/Java version to 1.9 in
pom.xml
.The text was updated successfully, but these errors were encountered: