Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of FindBugs 2.0 bugs by rank?

I know there is list of bugs, but I would like to have a list with additional information about rank (1 to 20 in version 2.0) or at least about ranking groups (Of concern, Troubling, Scary, Scariest). Maybe I'm missing something, but FindBugs forum does not seem to be active?!

like image 364
Guest Darko Avatar asked Mar 06 '12 12:03

Guest Darko


People also ask

What code does FindBugs used for code analysis?

FindBugs operates on Java bytecode, rather than source code. The software is distributed as a stand-alone GUI application. There are also plug-ins available for Eclipse, NetBeans, IntelliJ IDEA, Gradle, Hudson, Maven, Bamboo and Jenkins.

How do I ignore Findbug warnings?

Copy and paste the FindBugs identifier. It should be in ALL_CAPS. Be sure that the correct findbugs SuppressWarnings annotation is being used. Add this Suppress warnings annotation above the offending line of code.

What is use to FindBugs?

Overview. FindBugs is an open source tool used to perform static analysis on Java code. In this article, we're going to have a look at setting up FindBugs on a Java project and integrating it into the IDE and the Maven build.

What is com Google Code FindBugs?

FindBugs is a defect detection tool for Java that uses static analysis to look for more than 200 bug patterns, such as null pointer dereferences, infinite recursive loops, bad uses of the Java libraries and deadlocks.


1 Answers

Perhaps http://code.google.com/p/findbugs/source/browse/trunk/findbugs/etc/bugrank.txt but I don't know if it is exhaustive (FindBugs Bug Descriptions has more entries).

like image 184
PhiLho Avatar answered Sep 26 '22 04:09

PhiLho