Tagged Questions

0
votes
5answers
95 views

why it returns null password???

In my Generator class ,I make a new password and also I have a SystemManagements class which imports Generator class (it is in the other package) and I have some information like n …
0
votes
0answers
9 views

Findbugs does not display source code line number

I am using Findbugs 1.3.9 and it displays the source file of the errors but does not identify the source line number. It just says something like "may fail to clean up java.sql.St …
0
votes
3answers
26 views

MALICIOUS_CODE EI_EXPOSE_REP Medium

Hi all, I run findbugs against all of my code and only tackle the top stuff. I finally got the top stuff resolved and now am looking at the details. I have a simple entity, say …
9
votes
8answers
3k views

ResultSet not closed when connection closed?

I ve been doing code review (mostly using tools like FindBug) of one of our pet projects and FindBug marked following code as errorneus (pseudocode): Connection conn = dataSource. …
1
vote
2answers
55 views

How to run findbugs automatically in maven on install

It's easy to add the findbugs plugin to maven so that it will run if I do mvn site However, I would like it to run whenever I do mvn install just like unit tests. That is, I …
0
votes
1answer
30 views

FindBugs eclipse plugin classes location

Is it possible to specify the classes location like you can in the findbugs ant task? or is there another way to exclude a directory of class files (we compile our test classes t …
1
vote
3answers
125 views

Simple, general-interest, code-analyzers based, Java questions

OK, after reviewing some code with PMD and FindBugs code analyzers, i was able to do great changes on the reviewed code. However, there are some things i don't know how to fix. I' …
1
vote
3answers
81 views

Synchronize on BlockedQueue.

Hello, I have a code piece that I am reviewing (using FindBug). public class MyClass{ ... private BlockedQueue q = new LinkedBlockingQueue<MyData>(1000); private static fi …
2
votes
2answers
195 views

Code analyzers: PMD & FindBugs

1. Regarding PMD: 1.1 How do I set the PMD checks, to ignore some of them, like "Variable name is too short, or too long", "Remove empty constructor, etc" - and if I do that, anot …
2
votes
1answer
162 views

Findbugs using jsr305 annotations in eclipse is not finding bugs

Hi Folks, I've been experimenting with the jsr 305 annotations for use with Findbugs, specifically the @CheckForNull annotation which would have avoided a bug I just found making …
1
vote
1answer
127 views

Finding source paths using FindBugs ant task

I'm trying to get the FindBugs ant task to include source info in the generated report. <findbugs home="${findbugs.home}" output="xml" outputFile="${basedir}/findbugs/findbugs …
0
votes
1answer
38 views

Maintaining findbugs bug history

Findbugs provides a way to do data mining of bugs. That looks interesting as it helps in trending of bugs over various revisions. What I want to do is: On each commit to version c …
4
votes
1answer
35 views

Findbugs + JSR305: Possibility to specify default behavior?

Hello! Note: those annotations, I'm talking about, are specified by JSR305. I have the latest Findbugs (1.3.9) and it finds errors correctly when some field, annotated with @Nonn …
4
votes
3answers
252 views

Is there a Findbugs and / or PMD equivalent for C/C++?

I was recently asked about alternatives to Coverity Prevent for a code base that includes both C/C++ and Java. Obviously, on the Java side, the free tools available include Findbu …
0
votes
0answers
22 views

How do I find a bug when findbugs reports “Line: -1, Type: NP_NULL_ON_SOME_PATH”

anyone ever run into the problem where findbugs reports a -1 for the line? File: foo.java, Line: -1, Type: NP_NULL_ON_SOME_PATH, Priority: Normal, Category: CORRECTNESS here

1 2 3 next
15 30 50 per page