views:

147

answers:

0

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.Statement in ", and of course clicking on the bug does not take me to the statement in the source file displayed in the right pane.

I have made sure I am compiling with debug turned on:

javac.options:
javac.debug=on
javac.debuglevel=lines,vars,source
javac.deprecation=on
javac.listfiles=no
javac.nowarn=off
javac.optimize=off
javac.source=1.5
javac.verbose=off

Does anybody have a suggestion? Does it have to do with setting my source directory?

Thanks