-
Thanks for the patch, but I will be out of office till beginning November and have no time to review it.
Regards,
Andrei.
2009-10-12 20:23:52 UTC in FindBugs
-
Simply unzip the plugin zip file as is into the dropins folder and restart Eclipse.
Please ask questions in the forums, not in the bug tracker.
Not a bug, closing as invalid.
2009-09-21 20:19:09 UTC in FindBugs
-
Hi Bill,
can you please delete the reference to the old plugin version (edu.umd.cs.findbugs.plugin.eclipse_1.2.1) from the site.xml?
Regards,
Andrei.
2009-08-26 05:02:15 UTC in FindBugs
-
Please try to reproduce this with the latest released version (1.3.8).
Regards,
Andrei.
2009-07-13 05:13:20 UTC in FindBugs
-
Please try to reproduce this with the latest released version (1.3.8).
Regards,
Andrei.
2009-07-13 05:12:05 UTC in FindBugs
-
During the code refactoring I've stumbled upon the fiact, that the UnionBugs ant task calls edu.umd.cs.findbugs.workflow.UnionResults class directly, unlike all other FindBugs tasks, which does not rely at run time on the FindBugs jar.
Additionally, this task does not follow the common FindBugs ant task practices (has to extend AbstractFindBugsTask) and does not support common FindBugs ant...
2009-07-10 08:55:58 UTC in FindBugs
-
This feature is already there. Look in your project settings -> Findbugs tab. Enable custom project settings. Configure it as you like. Save. Now use the .fbprefs file from the root of the project in your other tools.
I set this issue to pending. It will be closed in two weeks.
Regards,
Andrei.
2009-07-09 16:26:47 UTC in FindBugs
-
Additionally, I see that the connections with databese does not work if the client is sitting behind a proxy.
2009-07-04 07:26:53 UTC in FindBugs
-
Do you want to say, that if you compile the code below on Eclipse:
public String testStringBuilder( final String what, final int times ) {
String result = "";
for ( int i = 0; i < times; i++ )
result += what;
return result;
}
FindBugs can not detect SBSC_USE_STRINGBUFFER_CONCATENATION pattern, but if you compile this code with javac, it detects the bug?
In this case this is not a...
2009-07-04 07:24:45 UTC in FindBugs
-
Not sure if this was intended, but the BugRanker code allows to have null entries for single bugs/categories etc, so why not to allow to have empty/missing bug ranks resource files?
Fixed in head, see
http://code.google.com/p/findbugs/source/detail?r=11376.
2009-07-03 09:12:22 UTC in FindBugs