I'm using plexus-compiler-eclipse-1.8.2 to compile my project using the eclipse compiler from maven. I'm using clone() to create a copy of an array:
byte[] copy = orig.clone();
and I get the following error:
Type mismatch: cannot convert from Object to byte[]
The same code compiles without this error with javac. Has anyone encountered this issue?
Thanks!