JDK v8 specified, v9 used for call `Arrays.equals`
pixeroid opened this issue · 0 comments
pixeroid commented
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
.