I\'m searching for similar tools like FindBugs to analyze my code. I only saw that in the links page 开发者_如何学运维of the FindBugs site.
I\'m trying to use findbugs as a library for my program (but the problem is not strictly related to findbugs). I\'ve wrote several tests to configure and call some functions of findbugs. But strangely
I\'m currently working on a Java project where it\'s part of my job to watch over the quality. As tools I use Jenkins in combination with Sonar. These tools are great and the helped me to track issues
FindBugs is telling me I have the following error: A primitive is boxed, and then immediately unboxed. This probably is due to a manual boxing in a place where an unboxed value is required, thus for
I\'ve used FindBugs before and I didn\'t have problems, however this time on Eclipse Helios on Ubuntu Natty Narval bugs are found but not shown.
In the FindBugs distribution, annotations.jar is not a subset of jsr305.jar. However, several annotations seem to be duplicated (either 开发者_如何学Goexactly, or very closely). Should I prefer an ann
While running the code through FindBugs to pick up smelly bits I am getting Bug: Class com.MyClass defines non-transient non-serializable instance field someSet
In my findbugs report I have a SIO_SUPERFLUOUS_INSTANCEOF correctness error in the following code section
At present I am working for a group where source code (Java) for multiple projects have to be analysed by static code analysic tools
I have a Comp开发者_JAVA技巧arator that checks \"null\"s for the two objects before comparing their contents.