Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Findbugs in Eclipse ArrayIndexOutOfBounds Exception when running

I just installed (and re-installed) Findbugs in Eclipse Juno and every time I try to run it in any of my projects I get the following error:

An internal error occurred during: "Finding bugs in <project name>...". java.lang.ArrayIndexOutOfBoundsException 

Googling didn't provide any useful results. Any ideas?

EDIT: I tried (and probably failed) to install Java 8's test version in Eclipse to try out Java 8's lambdas and other features. Maybe it has something to do with Findbugs not running properly?

like image 301
deinocheirus Avatar asked Jun 23 '13 09:06

deinocheirus


1 Answers

FB official release is not yet (2.0.3) compatible with Java 8 class file format.

However, the perfectly working Eclipse plugin daily build of 3.0.0 version is available from this update site: http://findbugs.cs.umd.edu/eclipse-daily

We plan to release 3.0.0 RC1 in the next few days (till the end of the Juni 2014).

like image 83
Andrey Loskutov Avatar answered Oct 04 '22 03:10

Andrey Loskutov