-
Using javaxdelta 2.0.0 with trove 2.0.4, I have two files that exhibit a problem. Running Delta on the two files, then running GDiffPatcher succeeds, but produces a file that is not identical to the original.
> java -cp lib/javaxdelta-2.0.0.jar;lib/trove-2.0.4.jar com.nothome.delta.Delta source target patch
> java -cp lib/javaxdelta-2.0.0.jar;lib/trove-2.0.4.jar...
08:25PM UTC on Jan 08 2009 in javaxdelta
-
I am also seeing this problem. It seems that FindBugs only reports this when the program is quite large, and perhaps it cannot do as complete a data flow analysis as it might on a smaller program? The detailed warning message lists the concrete implementations of Map, noting that a null key is valid for HashMap and many other implementations, but is not valid for Hashtable. In my example, the...
01:50AM UTC on Mar 01 2007 in FindBugs
-
I am running the latest version I can see on Sourceforge, or the Eclipse plug-in update site - that is, 1.1.3.20070105. The bug is still present in that release. Where is the 1.1.4 version you refer to?.
04:10AM UTC on Feb 14 2007 in FindBugs
-
The duplicate branch detector reports a false
positive with the following code:
public class TestCase
{
public static void main(String... args)
{
loop: for (int i=0; i<5; i++)
{
switch (args.length)
{
case 0:
case 1:
System.out.println("some thing");
break loop;...
11:46PM UTC on Oct 24 2006 in FindBugs