[Fb-contrib-commit] SF.net SVN: fb-contrib:[1655] trunk/fb-contrib
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2011-03-06 16:30:24
|
Revision: 1655
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1655&view=rev
Author: dbrosius
Date: 2011-03-06 16:30:15 +0000 (Sun, 06 Mar 2011)
Log Message:
-----------
LLOAD goes to 3
Modified Paths:
--------------
trunk/fb-contrib/.classpath
trunk/fb-contrib/etc/findbugs.xml
trunk/fb-contrib/samples/BAS_Sample.java
trunk/fb-contrib/samples/samples-bugs.xml
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java
Modified: trunk/fb-contrib/.classpath
===================================================================
--- trunk/fb-contrib/.classpath 2011-03-01 07:07:16 UTC (rev 1654)
+++ trunk/fb-contrib/.classpath 2011-03-06 16:30:15 UTC (rev 1655)
@@ -15,7 +15,7 @@
<classpathentry kind="lib" path="lib/jsr305.jar"/>
<classpathentry kind="lib" path="samples/lib/jsp-api.jar"/>
<classpathentry kind="lib" path="samples/lib/junit.jar"/>
- <classpathentry kind="lib" path="samples/lib/log4j.jar"/>
+ <classpathentry kind="lib" path="samples/lib/log4j.jar" sourcepath="/home/dave/.m2/repository/log4j/log4j/1.2.15/log4j-1.2.15-sources.jar"/>
<classpathentry kind="lib" path="samples/lib/servlet-api.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/findbugs"/>
<classpathentry kind="output" path="classes"/>
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2011-03-01 07:07:16 UTC (rev 1654)
+++ trunk/fb-contrib/etc/findbugs.xml 2011-03-06 16:30:15 UTC (rev 1655)
@@ -133,9 +133,9 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.SillynessPotPourri" speed="fast"
reports="SPP_NEGATIVE_BITSET_ITEM,SPP_INTERN_ON_CONSTANT,SPP_NO_CHAR_SB_CTOR,SPP_USE_MATH_CONSTANT,SPP_STUTTERED_ASSIGNMENT,SPP_USE_ISNAN,SPP_USE_BIGDECIMAL_STRING_CTOR,SPP_STRINGBUFFER_WITH_EMPTY_STRING,SPP_EQUALS_ON_ENUM,SPP_INVALID_BOOLEAN_NULL_CHECK,SPP_USE_CHARAT,SPP_USELESS_TRINARY,SPP_SUSPECT_STRING_TEST,SPP_USE_STRINGBUILDER_LENGTH,SPP_INVALID_CALENDAR_COMPARE,SPP_USE_CONTAINSKEY,SPP_USE_ISEMPTY,SPP_USE_GETPROPERTY,SPP_USELESS_CASING,SPP_NON_ARRAY_PARM,SPP_EMPTY_CASING,SPP_TEMPORARY_TRIM" />
-<!--
+
<Detector class="com.mebigfatguy.fbcontrib.detect.BloatedAssignmentScope" speed="fast" reports="BAS_BLOATED_ASSIGNMENT_SCOPE" hidden="true" />
--->
+
<Detector class="com.mebigfatguy.fbcontrib.detect.SpoiledChildInterfaceImplementor" speed="fast" reports="SCII_SPOILED_CHILD_INTERFACE_IMPLEMENTOR" />
<Detector class="com.mebigfatguy.fbcontrib.detect.DeletingWhileIterating" speed="fast" reports="DWI_DELETING_WHILE_ITERATING,DWI_MODIFYING_WHILE_ITERATING" />
Modified: trunk/fb-contrib/samples/BAS_Sample.java
===================================================================
--- trunk/fb-contrib/samples/BAS_Sample.java 2011-03-01 07:07:16 UTC (rev 1654)
+++ trunk/fb-contrib/samples/BAS_Sample.java 2011-03-06 16:30:15 UTC (rev 1655)
@@ -3,7 +3,7 @@
import java.util.Set;
@SuppressWarnings("all")
-public class BAS_Sample
+public class BAS_Sample
{
public void testIfScope(String s)
{
@@ -13,7 +13,7 @@
s = o.toString();
}
}
-
+
public String testFPForScope(String s)
{
Object o = new Object();
@@ -24,7 +24,7 @@
}
return s;
}
-
+
public String testFP2Scopes(String s)
{
Object o = new Object();
@@ -36,10 +36,10 @@
{
s = o.toString();
}
-
+
return s;
}
-
+
public String test2InnerScopes(String s)
{
Object o = new Object();
@@ -54,10 +54,10 @@
s = o.toString();
}
}
-
+
return s;
}
-
+
public String testFPLoopCond(List<String> in)
{
StringBuilder sb = new StringBuilder();
@@ -67,30 +67,30 @@
}
return sb.toString();
}
-
+
public List<String> getList()
{
return null;
}
-
+
public String testSwitch(int a)
{
String v = "Test";
-
+
switch (a)
{
case 1:
v = "Testa";
break;
-
+
case 2:
v = "Tesseract";
break;
-
+
case 3:
v = "Testy";
break;
-
+
default:
v = "Rossa";
break;
@@ -98,45 +98,54 @@
return null;
}
-
+
public void testFPSync(Set<String> a, Set<String> b)
{
String c, d;
-
+
synchronized(this)
{
c = a.iterator().next();
d = b.iterator().next();
}
-
+
if (d.length() > 0)
{
d = c;
}
}
-
+
public int testFPObjChange(Calendar c, boolean b)
{
int hour = c.get(Calendar.HOUR_OF_DAY);
c.set(2000, Calendar.JANUARY, 1);
-
+
if (b)
{
return hour;
}
-
+
return 0;
}
-
+
public void testFPSrcOverwrite(int src, boolean b)
{
int d = src;
src = 0;
-
+
if (b)
{
System.out.println(d);
}
}
+ public void testFPRiskies1(boolean b) {
+ long start = System.currentTimeMillis();
+
+ if (b) {
+ long delta = System.currentTimeMillis() - start;
+ System.out.println(delta);
+ }
+ }
+
}
Modified: trunk/fb-contrib/samples/samples-bugs.xml
===================================================================
--- trunk/fb-contrib/samples/samples-bugs.xml 2011-03-01 07:07:16 UTC (rev 1654)
+++ trunk/fb-contrib/samples/samples-bugs.xml 2011-03-06 16:30:15 UTC (rev 1655)
@@ -1,12 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<BugCollection version="1.2.0-rc1" sequence="0" timestamp="-1" analysisTimestamp="1173623337203" release="">
- <Project filename="O:\fb-contrib\samples\samples.fb">
- <Jar>O:\fb-contrib\samples</Jar>
- <AuxClasspathEntry>O:\fb-contrib\samples\lib\jsp-api.jar</AuxClasspathEntry>
- <SrcDir>O:\fb-contrib\samples</SrcDir>
+ <Project projectName="">
+ <Jar>/home/dave/dev/fb-contrib/samples/O:\fb-contrib\samples</Jar>
+ <AuxClasspathEntry>/home/dave/dev/fb-contrib/samples/O:\fb-contrib\samples\lib\jsp-api.jar</AuxClasspathEntry>
+ <SrcDir>/home/dave/dev/fb-contrib/samples/O:\fb-contrib\samples</SrcDir>
+ <WrkDir>/home/dave/dev/fb-contrib/samples</WrkDir>
+ <SuppressionFilter>
+ <LastVersion value="-1" relOp="NEQ"/>
+ </SuppressionFilter>
+ <Cloud id="1"></Cloud>
</Project>
- <BugInstance type="ABC_ARRAY_BASED_COLLECTIONS" priority="2" abbrev="ABC" category="CORRECTNESS">
+ <CloudDetails online="false"/>
+ <BugInstance type="ABC_ARRAY_BASED_COLLECTIONS" priority="2" abbrev="ABC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ABC_Sample">
<SourceLine classname="ABC_Sample" sourcefile="ABC_Sample.java" sourcepath="ABC_Sample.java"/>
</Class>
@@ -15,7 +21,7 @@
</Method>
<SourceLine classname="ABC_Sample" start="29" end="29" startBytecode="2" endBytecode="2" sourcefile="ABC_Sample.java" sourcepath="ABC_Sample.java"/>
</BugInstance>
- <BugInstance type="ABC_ARRAY_BASED_COLLECTIONS" priority="2" abbrev="ABC" category="CORRECTNESS">
+ <BugInstance type="ABC_ARRAY_BASED_COLLECTIONS" priority="2" abbrev="ABC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ABC_Sample">
<SourceLine classname="ABC_Sample" sourcefile="ABC_Sample.java" sourcepath="ABC_Sample.java"/>
</Class>
@@ -24,7 +30,7 @@
</Method>
<SourceLine classname="ABC_Sample" start="16" end="16" startBytecode="11" endBytecode="11" sourcefile="ABC_Sample.java" sourcepath="ABC_Sample.java"/>
</BugInstance>
- <BugInstance type="ABC_ARRAY_BASED_COLLECTIONS" priority="2" abbrev="ABC" category="CORRECTNESS">
+ <BugInstance type="ABC_ARRAY_BASED_COLLECTIONS" priority="2" abbrev="ABC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ABC_Sample">
<SourceLine classname="ABC_Sample" sourcefile="ABC_Sample.java" sourcepath="ABC_Sample.java"/>
</Class>
@@ -33,12 +39,12 @@
</Method>
<SourceLine classname="ABC_Sample" start="23" end="23" startBytecode="10" endBytecode="10" sourcefile="ABC_Sample.java" sourcepath="ABC_Sample.java"/>
</BugInstance>
- <BugInstance type="SIC_INNER_SHOULD_BE_STATIC_ANON" priority="3" abbrev="SIC" category="PERFORMANCE">
+ <BugInstance type="SIC_INNER_SHOULD_BE_STATIC_ANON" priority="3" abbrev="SIC" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="ABC_Sample$UseComparator$1">
<SourceLine classname="ABC_Sample$UseComparator$1" sourcefile="ABC_Sample.java" sourcepath="ABC_Sample.java"/>
</Class>
</BugInstance>
- <BugInstance type="ACEM_ABSTRACT_CLASS_EMPTY_METHODS" priority="2" abbrev="ACEM" category="STYLE">
+ <BugInstance type="ACEM_ABSTRACT_CLASS_EMPTY_METHODS" priority="2" abbrev="ACEM" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="ACEM_Sample">
<SourceLine classname="ACEM_Sample" sourcefile="ACEM_Sample.java" sourcepath="ACEM_Sample.java"/>
</Class>
@@ -47,7 +53,7 @@
</Method>
<SourceLine classname="ACEM_Sample" start="7" end="7" startBytecode="0" endBytecode="0" sourcefile="ACEM_Sample.java" sourcepath="ACEM_Sample.java"/>
</BugInstance>
- <BugInstance type="ACEM_ABSTRACT_CLASS_EMPTY_METHODS" priority="2" abbrev="ACEM" category="STYLE">
+ <BugInstance type="ACEM_ABSTRACT_CLASS_EMPTY_METHODS" priority="2" abbrev="ACEM" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="ACEM_Sample">
<SourceLine classname="ACEM_Sample" sourcefile="ACEM_Sample.java" sourcepath="ACEM_Sample.java"/>
</Class>
@@ -56,7 +62,7 @@
</Method>
<SourceLine classname="ACEM_Sample" start="11" end="11" startBytecode="9" endBytecode="9" sourcefile="ACEM_Sample.java" sourcepath="ACEM_Sample.java"/>
</BugInstance>
- <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS">
+ <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="AFBR_Sample">
<SourceLine classname="AFBR_Sample" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</Class>
@@ -65,7 +71,7 @@
</Method>
<SourceLine classname="AFBR_Sample" start="17" end="17" startBytecode="19" endBytecode="19" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</BugInstance>
- <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS">
+ <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="AFBR_Sample">
<SourceLine classname="AFBR_Sample" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</Class>
@@ -74,7 +80,7 @@
</Method>
<SourceLine classname="AFBR_Sample" start="31" end="31" startBytecode="18" endBytecode="18" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</BugInstance>
- <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS">
+ <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="AFBR_Sample">
<SourceLine classname="AFBR_Sample" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</Class>
@@ -83,7 +89,7 @@
</Method>
<SourceLine classname="AFBR_Sample" start="43" end="43" startBytecode="18" endBytecode="18" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</BugInstance>
- <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS">
+ <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="2" abbrev="AFBR" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="AFBR_Sample">
<SourceLine classname="AFBR_Sample" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</Class>
@@ -92,7 +98,7 @@
</Method>
<SourceLine classname="AFBR_Sample" start="59" end="59" startBytecode="15" endBytecode="15" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</BugInstance>
- <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="3" abbrev="AFBR" category="CORRECTNESS">
+ <BugInstance type="AFBR_ABNORMAL_FINALLY_BLOCK_RETURN" priority="3" abbrev="AFBR" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="AFBR_Sample">
<SourceLine classname="AFBR_Sample" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</Class>
@@ -101,7 +107,7 @@
</Method>
<SourceLine classname="AFBR_Sample" start="78" end="78" startBytecode="50" endBytecode="50" sourcefile="AFBR_Sample.java" sourcepath="AFBR_Sample.java"/>
</BugInstance>
- <BugInstance type="AOM_ABSTRACT_OVERRIDDEN_METHOD" priority="2" abbrev="AOM" category="CORRECTNESS">
+ <BugInstance type="AOM_ABSTRACT_OVERRIDDEN_METHOD" priority="2" abbrev="AOM" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="AOM_Sample">
<SourceLine classname="AOM_Sample" sourcefile="AOM_Sample.java" sourcepath="AOM_Sample.java"/>
</Class>
@@ -109,7 +115,7 @@
<SourceLine classname="AOM_Sample" startBytecode="0" sourcefile="AOM_Sample.java" sourcepath="AOM_Sample.java"/>
</Method>
</BugInstance>
- <BugInstance type="AWCBR_ARRAY_WRAPPED_CALL_BY_REFERENCE" priority="2" abbrev="AWCBR" category="STYLE">
+ <BugInstance type="AWCBR_ARRAY_WRAPPED_CALL_BY_REFERENCE" priority="2" abbrev="AWCBR" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="AWCBR_Sample">
<SourceLine classname="AWCBR_Sample" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</Class>
@@ -118,7 +124,7 @@
</Method>
<SourceLine classname="AWCBR_Sample" start="22" end="22" startBytecode="16" endBytecode="16" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</BugInstance>
- <BugInstance type="AWCBR_ARRAY_WRAPPED_CALL_BY_REFERENCE" priority="2" abbrev="AWCBR" category="STYLE">
+ <BugInstance type="AWCBR_ARRAY_WRAPPED_CALL_BY_REFERENCE" priority="2" abbrev="AWCBR" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="AWCBR_Sample">
<SourceLine classname="AWCBR_Sample" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</Class>
@@ -127,7 +133,7 @@
</Method>
<SourceLine classname="AWCBR_Sample" start="14" end="14" startBytecode="16" endBytecode="16" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</BugInstance>
- <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE">
+ <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="AWCBR_Sample">
<SourceLine classname="AWCBR_Sample" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</Class>
@@ -136,7 +142,7 @@
</Method>
<SourceLine classname="AWCBR_Sample" start="31" end="31" startBytecode="13" endBytecode="13" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</BugInstance>
- <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE">
+ <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="AWCBR_Sample">
<SourceLine classname="AWCBR_Sample" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</Class>
@@ -145,7 +151,7 @@
</Method>
<SourceLine classname="AWCBR_Sample" start="23" end="23" startBytecode="18" endBytecode="18" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</BugInstance>
- <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE">
+ <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="AWCBR_Sample">
<SourceLine classname="AWCBR_Sample" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</Class>
@@ -154,7 +160,7 @@
</Method>
<SourceLine classname="AWCBR_Sample" start="15" end="15" startBytecode="18" endBytecode="18" sourcefile="AWCBR_Sample.java" sourcepath="AWCBR_Sample.java"/>
</BugInstance>
- <BugInstance type="BAS_BLOATED_ASSIGNMENT_SCOPE" priority="2" abbrev="BAS" category="PERFORMANCE">
+ <BugInstance type="BAS_BLOATED_ASSIGNMENT_SCOPE" priority="2" abbrev="BAS" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -163,7 +169,7 @@
</Method>
<SourceLine classname="BAS_Sample" start="7" end="7" startBytecode="7" endBytecode="7" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="2" abbrev="DLS" category="STYLE">
+ <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="2" abbrev="DLS" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -173,7 +179,7 @@
<LocalVariable name="o" register="2" pc="8" role="LOCAL_VARIABLE_NAMED"/>
<SourceLine classname="BAS_Sample" start="16" end="16" startBytecode="7" endBytecode="7" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="2" abbrev="DLS" category="STYLE">
+ <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="2" abbrev="DLS" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -183,7 +189,7 @@
<LocalVariable name="s" register="1" pc="22" role="LOCAL_VARIABLE_NAMED"/>
<SourceLine classname="BAS_Sample" start="10" end="10" startBytecode="21" endBytecode="21" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="3" abbrev="DLS" category="STYLE">
+ <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="3" abbrev="DLS" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -193,7 +199,7 @@
<LocalVariable name="o" register="2" pc="22" role="LOCAL_VARIABLE_NAMED"/>
<SourceLine classname="BAS_Sample" start="19" end="19" startBytecode="21" endBytecode="21" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -202,7 +208,7 @@
</Method>
<SourceLine classname="BAS_Sample" start="41" end="41" startBytecode="15" endBytecode="15" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -211,7 +217,7 @@
</Method>
<SourceLine classname="BAS_Sample" start="43" end="43" startBytecode="32" endBytecode="32" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -220,7 +226,7 @@
</Method>
<SourceLine classname="BAS_Sample" start="28" end="28" startBytecode="11" endBytecode="11" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -229,7 +235,7 @@
</Method>
<SourceLine classname="BAS_Sample" start="30" end="30" startBytecode="28" endBytecode="28" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BAS_Sample">
<SourceLine classname="BAS_Sample" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</Class>
@@ -238,7 +244,7 @@
</Method>
<SourceLine classname="BAS_Sample" start="8" end="8" startBytecode="11" endBytecode="11" sourcefile="BAS_Sample.java" sourcepath="BAS_Sample.java"/>
</BugInstance>
- <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="3" abbrev="DLS" category="STYLE">
+ <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="3" abbrev="DLS" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="BSB_Sample">
<SourceLine classname="BSB_Sample" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</Class>
@@ -248,7 +254,7 @@
<LocalVariable name="?" register="5" pc="55" role="LOCAL_VARIABLE_UNKNOWN"/>
<SourceLine classname="BSB_Sample" start="74" end="74" startBytecode="55" endBytecode="55" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="BSB_Sample">
<SourceLine classname="BSB_Sample" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</Class>
@@ -257,7 +263,7 @@
</Method>
<SourceLine classname="BSB_Sample" start="42" end="42" startBytecode="19" endBytecode="19" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="BSB_Sample">
<SourceLine classname="BSB_Sample" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</Class>
@@ -266,7 +272,7 @@
</Method>
<SourceLine classname="BSB_Sample" start="54" end="54" startBytecode="16" endBytecode="16" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="BSB_Sample">
<SourceLine classname="BSB_Sample" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</Class>
@@ -275,7 +281,7 @@
</Method>
<SourceLine classname="BSB_Sample" start="18" end="18" startBytecode="14" endBytecode="14" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="BSB_Sample">
<SourceLine classname="BSB_Sample" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</Class>
@@ -284,7 +290,7 @@
</Method>
<SourceLine classname="BSB_Sample" start="30" end="30" startBytecode="16" endBytecode="16" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</BugInstance>
- <BugInstance type="NMCS_NEEDLESS_MEMBER_COLLECTION_SYNCHRONIZATION" priority="2" abbrev="NMCS" category="PERFORMANCE">
+ <BugInstance type="NMCS_NEEDLESS_MEMBER_COLLECTION_SYNCHRONIZATION" priority="2" abbrev="NMCS" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="BSB_Sample">
<SourceLine classname="BSB_Sample" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</Class>
@@ -292,63 +298,63 @@
<SourceLine classname="BSB_Sample" start="12" end="12" startBytecode="37" endBytecode="37" sourcefile="BSB_Sample.java" sourcepath="BSB_Sample.java"/>
</Field>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testcd(D)V"/>
<String value="testcd(Ljava/lang/Character;)V"/>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testcd(Ljava/lang/Character;)V"/>
<String value="testcd(D)V"/>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testcf(F)V"/>
<String value="testcf(Ljava/lang/Character;)V"/>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testcf(Ljava/lang/Character;)V"/>
<String value="testcf(F)V"/>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testci(I)V"/>
<String value="testci(Ljava/lang/Character;)V"/>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testci(Ljava/lang/Character;)V"/>
<String value="testci(I)V"/>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testcj(J)V"/>
<String value="testcj(Ljava/lang/Character;)V"/>
</BugInstance>
- <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS">
+ <BugInstance type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" priority="2" abbrev="CAO" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CAO_Sample">
<SourceLine classname="CAO_Sample" sourcefile="CAO_Sample.java" sourcepath="CAO_Sample.java"/>
</Class>
<String value="testcj(Ljava/lang/Character;)V"/>
<String value="testcj(J)V"/>
</BugInstance>
- <BugInstance type="CBX_CUSTOM_BUILT_XML" priority="3" abbrev="CBX" category="STYLE">
+ <BugInstance type="CBX_CUSTOM_BUILT_XML" priority="3" abbrev="CBX" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="CBX_Sample">
<SourceLine classname="CBX_Sample" sourcefile="CBX_Sample.java" sourcepath="CBX_Sample.java"/>
</Class>
@@ -357,7 +363,7 @@
</Method>
<SourceLine classname="CBX_Sample" start="7" end="7" startBytecode="11" endBytecode="11" sourcefile="CBX_Sample.java" sourcepath="CBX_Sample.java"/>
</BugInstance>
- <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE">
+ <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="CBX_Sample">
<SourceLine classname="CBX_Sample" sourcefile="CBX_Sample.java" sourcepath="CBX_Sample.java"/>
</Class>
@@ -366,7 +372,7 @@
</Method>
<SourceLine classname="CBX_Sample" start="8" end="8" startBytecode="49" endBytecode="49" sourcefile="CBX_Sample.java" sourcepath="CBX_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CBX_Sample">
<SourceLine classname="CBX_Sample" sourcefile="CBX_Sample.java" sourcepath="CBX_Sample.java"/>
</Class>
@@ -375,7 +381,7 @@
</Method>
<SourceLine classname="CBX_Sample" start="6" end="6" startBytecode="7" endBytecode="7" sourcefile="CBX_Sample.java" sourcepath="CBX_Sample.java"/>
</BugInstance>
- <BugInstance type="CLI_CONSTANT_LIST_INDEX" priority="2" abbrev="CLI" category="CORRECTNESS">
+ <BugInstance type="CLI_CONSTANT_LIST_INDEX" priority="2" abbrev="CLI" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CLI_Sample">
<SourceLine classname="CLI_Sample" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</Class>
@@ -384,7 +390,7 @@
</Method>
<SourceLine classname="CLI_Sample" start="8" end="8" startBytecode="24" endBytecode="24" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</BugInstance>
- <BugInstance type="CLI_CONSTANT_LIST_INDEX" priority="2" abbrev="CLI" category="CORRECTNESS">
+ <BugInstance type="CLI_CONSTANT_LIST_INDEX" priority="2" abbrev="CLI" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CLI_Sample">
<SourceLine classname="CLI_Sample" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</Class>
@@ -393,7 +399,7 @@
</Method>
<SourceLine classname="CLI_Sample" start="15" end="15" startBytecode="6" endBytecode="6" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</BugInstance>
- <BugInstance type="CLI_CONSTANT_LIST_INDEX" priority="2" abbrev="CLI" category="CORRECTNESS">
+ <BugInstance type="CLI_CONSTANT_LIST_INDEX" priority="2" abbrev="CLI" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="CLI_Sample">
<SourceLine classname="CLI_Sample" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</Class>
@@ -402,7 +408,7 @@
</Method>
<SourceLine classname="CLI_Sample" start="16" end="16" startBytecode="10" endBytecode="10" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</BugInstance>
- <BugInstance type="SBSC_USE_STRINGBUFFER_CONCATENATION" priority="2" abbrev="SBSC" category="PERFORMANCE">
+ <BugInstance type="SBSC_USE_STRINGBUFFER_CONCATENATION" priority="2" abbrev="SBSC" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="CLI_Sample">
<SourceLine classname="CLI_Sample" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</Class>
@@ -411,7 +417,7 @@
</Method>
<SourceLine classname="CLI_Sample" start="8" end="8" startBytecode="11" endBytecode="11" sourcefile="CLI_Sample.java" sourcepath="CLI_Sample.java"/>
</BugInstance>
- <BugInstance type="COM_COPIED_OVERRIDDEN_METHOD" priority="2" abbrev="COM" category="STYLE">
+ <BugInstance type="COM_COPIED_OVERRIDDEN_METHOD" priority="2" abbrev="COM" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="COM_Sample$Derived">
<SourceLine classname="COM_Sample$Derived" sourcefile="COM_Sample.java" sourcepath="COM_Sample.java"/>
</Class>
@@ -420,7 +426,7 @@
</Method>
<SourceLine classname="COM_Sample$Derived" start="30" end="30" startBytecode="0" endBytecode="0" sourcefile="COM_Sample.java" sourcepath="COM_Sample.java"/>
</BugInstance>
- <BugInstance type="COM_COPIED_OVERRIDDEN_METHOD" priority="2" abbrev="COM" category="STYLE">
+ <BugInstance type="COM_COPIED_OVERRIDDEN_METHOD" priority="2" abbrev="COM" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="COM_Sample$Derived">
<SourceLine classname="COM_Sample$Derived" sourcefile="COM_Sample.java" sourcepath="COM_Sample.java"/>
</Class>
@@ -429,7 +435,7 @@
</Method>
<SourceLine classname="COM_Sample$Derived" start="45" end="45" startBytecode="0" endBytecode="0" sourcefile="COM_Sample.java" sourcepath="COM_Sample.java"/>
</BugInstance>
- <BugInstance type="DDC_DOUBLE_DATE_COMPARISON" priority="2" abbrev="DDC" category="PERFORMANCE">
+ <BugInstance type="DDC_DOUBLE_DATE_COMPARISON" priority="2" abbrev="DDC" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="DDC_Sample">
<SourceLine classname="DDC_Sample" sourcefile="DDC_Sample.java" sourcepath="DDC_Sample.java"/>
</Class>
@@ -438,7 +444,7 @@
</Method>
<SourceLine classname="DDC_Sample" start="8" end="8" startBytecode="13" endBytecode="13" sourcefile="DDC_Sample.java" sourcepath="DDC_Sample.java"/>
</BugInstance>
- <BugInstance type="DDC_DOUBLE_DATE_COMPARISON" priority="2" abbrev="DDC" category="PERFORMANCE">
+ <BugInstance type="DDC_DOUBLE_DATE_COMPARISON" priority="2" abbrev="DDC" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="DDC_Sample">
<SourceLine classname="DDC_Sample" sourcefile="DDC_Sample.java" sourcepath="DDC_Sample.java"/>
</Class>
@@ -447,7 +453,7 @@
</Method>
<SourceLine classname="DDC_Sample" start="16" end="16" startBytecode="13" endBytecode="13" sourcefile="DDC_Sample.java" sourcepath="DDC_Sample.java"/>
</BugInstance>
- <BugInstance type="DDC_DOUBLE_DATE_COMPARISON" priority="2" abbrev="DDC" category="PERFORMANCE">
+ <BugInstance type="DDC_DOUBLE_DATE_COMPARISON" priority="2" abbrev="DDC" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="DDC_Sample">
<SourceLine classname="DDC_Sample" sourcefile="DDC_Sample.java" sourcepath="DDC_Sample.java"/>
</Class>
@@ -456,7 +462,7 @@
</Method>
<SourceLine classname="DDC_Sample" start="24" end="24" startBytecode="13" endBytecode="13" sourcefile="DDC_Sample.java" sourcepath="DDC_Sample.java"/>
</BugInstance>
- <BugInstance type="DLC_DUBIOUS_LIST_COLLECTION" priority="2" abbrev="DLC" category="PERFORMANCE">
+ <BugInstance type="DLC_DUBIOUS_LIST_COLLECTION" priority="2" abbrev="DLC" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="DLC_Sample">
<SourceLine classname="DLC_Sample" sourcefile="DLC_Sample.java" sourcepath="DLC_Sample.java"/>
</Class>
@@ -465,7 +471,7 @@
</Field>
<SourceLine classname="DLC_Sample" start="11" end="11" startBytecode="5" endBytecode="5" sourcefile="DLC_Sample.java" sourcepath="DLC_Sample.java"/>
</BugInstance>
- <BugInstance type="LII_LIST_INDEXED_ITERATING" priority="2" abbrev="LII" category="STYLE">
+ <BugInstance type="LII_LIST_INDEXED_ITERATING" priority="2" abbrev="LII" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="DLC_Sample">
<SourceLine classname="DLC_Sample" sourcefile="DLC_Sample.java" sourcepath="DLC_Sample.java"/>
</Class>
@@ -474,7 +480,7 @@
</Method>
<SourceLine classname="DLC_Sample" start="14" end="14" startBytecode="26" endBytecode="99" sourcefile="DLC_Sample.java" sourcepath="DLC_Sample.java"/>
</BugInstance>
- <BugInstance type="DRE_DECLARED_RUNTIME_EXCEPTION" priority="2" abbrev="DRE" category="STYLE">
+ <BugInstance type="DRE_DECLARED_RUNTIME_EXCEPTION" priority="2" abbrev="DRE" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="DRE_Sample">
<SourceLine classname="DRE_Sample" sourcefile="DRE_Sample.java" sourcepath="DRE_Sample.java"/>
</Class>
@@ -483,7 +489,7 @@
</Method>
<String value="java.lang.NullPointerException"/>
</BugInstance>
- <BugInstance type="DRE_DECLARED_RUNTIME_EXCEPTION" priority="2" abbrev="DRE" category="STYLE">
+ <BugInstance type="DRE_DECLARED_RUNTIME_EXCEPTION" priority="2" abbrev="DRE" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="DRE_Sample">
<SourceLine classname="DRE_Sample" sourcefile="DRE_Sample.java" sourcepath="DRE_Sample.java"/>
</Class>
@@ -493,7 +499,7 @@
<String value="java.lang.IllegalMonitorStateException"/>
<String value="java.lang.ClassCastException"/>
</BugInstance>
- <BugInstance type="DRE_DECLARED_RUNTIME_EXCEPTION" priority="3" abbrev="DRE" category="STYLE">
+ <BugInstance type="DRE_DECLARED_RUNTIME_EXCEPTION" priority="3" abbrev="DRE" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="DRE_Sample">
<SourceLine classname="DRE_Sample" sourcefile="DRE_Sample.java" sourcepath="DRE_Sample.java"/>
</Class>
@@ -502,7 +508,7 @@
</Method>
<String value="CustomRuntimeException"/>
</BugInstance>
- <BugInstance type="DWI_DELETING_WHILE_ITERATING" priority="2" abbrev="DWI" category="CORRECTNESS">
+ <BugInstance type="DWI_DELETING_WHILE_ITERATING" priority="2" abbrev="DWI" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="DWI_Sample">
<SourceLine classname="DWI_Sample" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</Class>
@@ -511,7 +517,7 @@
</Method>
<SourceLine classname="DWI_Sample" start="17" end="17" startBytecode="38" endBytecode="38" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</BugInstance>
- <BugInstance type="DWI_MODIFYING_WHILE_ITERATING" priority="2" abbrev="DWI" category="CORRECTNESS">
+ <BugInstance type="DWI_MODIFYING_WHILE_ITERATING" priority="2" abbrev="DWI" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="DWI_Sample">
<SourceLine classname="DWI_Sample" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</Class>
@@ -520,7 +526,7 @@
</Method>
<SourceLine classname="DWI_Sample" start="25" end="25" startBytecode="39" endBytecode="39" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="DWI_Sample">
<SourceLine classname="DWI_Sample" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</Class>
@@ -529,7 +535,7 @@
</Method>
<SourceLine classname="DWI_Sample" start="24" end="24" startBytecode="31" endBytecode="31" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</BugInstance>
- <BugInstance type="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR" priority="3" abbrev="UwF" category="STYLE">
+ <BugInstance type="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR" priority="3" abbrev="UwF" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="DWI_Sample">
<SourceLine classname="DWI_Sample" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</Class>
@@ -537,12 +543,12 @@
<SourceLine classname="DWI_Sample" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</Field>
</BugInstance>
- <BugInstance type="SIC_INNER_SHOULD_BE_STATIC_ANON" priority="3" abbrev="SIC" category="PERFORMANCE">
+ <BugInstance type="SIC_INNER_SHOULD_BE_STATIC_ANON" priority="3" abbrev="SIC" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="DWI_Sample$1PoolSample">
<SourceLine classname="DWI_Sample$1PoolSample" sourcefile="DWI_Sample.java" sourcepath="DWI_Sample.java"/>
</Class>
</BugInstance>
- <BugInstance type="CI_CONFUSED_INHERITANCE" priority="3" abbrev="CI" category="STYLE">
+ <BugInstance type="CI_CONFUSED_INHERITANCE" priority="3" abbrev="CI" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -550,7 +556,7 @@
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Field>
</BugInstance>
- <BugInstance type="FCBL_FIELD_COULD_BE_LOCAL" priority="2" abbrev="FCBL" category="CORRECTNESS">
+ <BugInstance type="FCBL_FIELD_COULD_BE_LOCAL" priority="2" abbrev="FCBL" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -559,7 +565,7 @@
</Field>
<SourceLine classname="FCBL_Sample" start="14" end="14" startBytecode="11" endBytecode="11" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -568,7 +574,7 @@
</Method>
<SourceLine classname="FCBL_Sample" start="36" end="36" startBytecode="5" endBytecode="5" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -577,7 +583,7 @@
</Method>
<SourceLine classname="FCBL_Sample" start="38" end="38" startBytecode="23" endBytecode="23" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -586,7 +592,7 @@
</Method>
<SourceLine classname="FCBL_Sample" start="40" end="40" startBytecode="41" endBytecode="41" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</BugInstance>
- <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE">
+ <BugInstance type="LSC_LITERAL_STRING_COMPARISON" priority="3" abbrev="LSC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -595,7 +601,7 @@
</Method>
<SourceLine classname="FCBL_Sample" start="42" end="42" startBytecode="53" endBytecode="53" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</BugInstance>
- <BugInstance type="URF_UNREAD_FIELD" priority="2" abbrev="UrF" category="PERFORMANCE">
+ <BugInstance type="URF_UNREAD_FIELD" priority="2" abbrev="UrF" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -604,7 +610,7 @@
</Field>
<SourceLine classname="FCBL_Sample" start="16" end="16" startBytecode="21" endBytecode="21" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</BugInstance>
- <BugInstance type="URF_UNREAD_FIELD" priority="2" abbrev="UrF" category="PERFORMANCE">
+ <BugInstance type="URF_UNREAD_FIELD" priority="2" abbrev="UrF" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="FCBL_Sample">
<SourceLine classname="FCBL_Sample" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</Class>
@@ -613,7 +619,7 @@
</Field>
<SourceLine classname="FCBL_Sample" start="14" end="14" startBytecode="11" endBytecode="11" sourcefile="FCBL_Sample.java" sourcepath="FCBL_Sample.java"/>
</BugInstance>
- <BugInstance type="FPL_FLOATING_POINT_LOOPS" priority="2" abbrev="FPL" category="CORRECTNESS">
+ <BugInstance type="FPL_FLOATING_POINT_LOOPS" priority="2" abbrev="FPL" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="FPL_Sample">
<SourceLine classname="FPL_Sample" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</Class>
@@ -622,7 +628,7 @@
</Method>
<SourceLine classname="FPL_Sample" start="14" end="14" startBytecode="2" endBytecode="2" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</BugInstance>
- <BugInstance type="FPL_FLOATING_POINT_LOOPS" priority="2" abbrev="FPL" category="CORRECTNESS">
+ <BugInstance type="FPL_FLOATING_POINT_LOOPS" priority="2" abbrev="FPL" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="FPL_Sample">
<SourceLine classname="FPL_Sample" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</Class>
@@ -631,7 +637,7 @@
</Method>
<SourceLine classname="FPL_Sample" start="7" end="7" startBytecode="2" endBytecode="2" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</BugInstance>
- <BugInstance type="FPL_FLOATING_POINT_LOOPS" priority="2" abbrev="FPL" category="CORRECTNESS">
+ <BugInstance type="FPL_FLOATING_POINT_LOOPS" priority="2" abbrev="FPL" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="FPL_Sample">
<SourceLine classname="FPL_Sample" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</Class>
@@ -640,7 +646,7 @@
</Method>
<SourceLine classname="FPL_Sample" start="21" end="21" startBytecode="2" endBytecode="2" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</BugInstance>
- <BugInstance type="NAB_NEEDLESS_BOXING_PARSE" priority="2" abbrev="NAB" category="PERFORMANCE">
+ <BugInstance type="NAB_NEEDLESS_BOXING_PARSE" priority="2" abbrev="NAB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="FPL_Sample">
<SourceLine classname="FPL_Sample" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</Class>
@@ -649,7 +655,7 @@
</Method>
<SourceLine classname="FPL_Sample" start="21" end="21" startBytecode="8" endBytecode="8" sourcefile="FPL_Sample.java" sourcepath="FPL_Sample.java"/>
</BugInstance>
- <BugInstance type="IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN" priority="2" abbrev="IP" category="CORRECTNESS">
+ <BugInstance type="IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN" priority="2" abbrev="IP" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="FP_Sample">
<SourceLine classname="FP_Sample" sourcefile="FP_Sample.java" sourcepath="FP_Sample.java"/>
</Class>
@@ -659,7 +665,7 @@
<LocalVariable name="a" register="1" pc="3" role="LOCAL_VARIABLE_NAMED"/>
<SourceLine classname="FP_Sample" start="11" end="11" startBytecode="2" endBytecode="2" sourcefile="FP_Sample.java" sourcepath="FP_Sample.java"/>
</BugInstance>
- <BugInstance type="IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN" priority="2" abbrev="IP" category="CORRECTNESS">
+ <BugInstance type="IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN" priority="2" abbrev="IP" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="FP_Sample">
<SourceLine classname="FP_Sample" sourcefile="FP_Sample.java" sourcepath="FP_Sample.java"/>
</Class>
@@ -669,7 +675,7 @@
<LocalVariable name="a" register="1" pc="2" role="LOCAL_VARIABLE_NAMED"/>
<SourceLine classname="FP_Sample" start="18" end="18" startBytecode="1" endBytecode="1" sourcefile="FP_Sample.java" sourcepath="FP_Sample.java"/>
</BugInstance>
- <BugInstance type="ISB_EMPTY_STRING_APPENDING" priority="2" abbrev="ISB" category="PERFORMANCE">
+ <BugInstance type="ISB_EMPTY_STRING_APPENDING" priority="2" abbrev="ISB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -678,7 +684,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="43" end="43" startBytecode="9" endBytecode="9" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE">
+ <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -687,7 +693,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="8" end="8" startBytecode="33" endBytecode="33" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE">
+ <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -696,7 +702,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="9" end="9" startBytecode="57" endBytecode="57" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE">
+ <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -705,7 +711,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="17" end="17" startBytecode="74" endBytecode="74" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="3" abbrev="ISB" category="PERFORMANCE">
+ <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="3" abbrev="ISB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -714,7 +720,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="69" end="69" startBytecode="51" endBytecode="51" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -723,7 +729,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="56" end="56" startBytecode="7" endBytecode="7" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -732,7 +738,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="7" end="7" startBytecode="7" endBytecode="7" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -741,7 +747,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="14" end="14" startBytecode="7" endBytecode="7" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -750,7 +756,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="25" end="25" startBytecode="8" endBytecode="8" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -759,7 +765,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="31" end="31" startBytecode="8" endBytecode="8" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -768,7 +774,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="48" end="48" startBytecode="7" endBytecode="7" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS">
+ <BugInstance type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" priority="1" abbrev="LSYC" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -777,7 +783,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="67" end="67" startBytecode="19" endBytecode="19" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE">
+ <BugInstance type="USBR_UNNECESSARY_STORE_BEFORE_RETURN" priority="2" abbrev="USBR" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="ISB_Sample">
<SourceLine classname="ISB_Sample" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</Class>
@@ -786,7 +792,7 @@
</Method>
<SourceLine classname="ISB_Sample" start="38" end="38" startBytecode="58" endBytecode="58" sourcefile="ISB_Sample.java" sourcepath="ISB_Sample.java"/>
</BugInstance>
- <BugInstance type="ITC_INHERITANCE_TYPE_CHECKING" priority="2" abbrev="ITC" category="STYLE">
+ <BugInstance type="ITC_INHERITANCE_TYPE_CHECKING" priority="2" abbrev="ITC" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="ITC_Sample">
<SourceLine classname="ITC_Sample" sourcefile="ITC_Sample.java" sourcepath="ITC_Sample.java"/>
</Class>
@@ -795,7 +801,7 @@
</Method>
<SourceLine classname="ITC_Sample" start="10" end="10" startBytecode="0" endBytecode="0" sourcefile="ITC_Sample.java" sourcepath="ITC_Sample.java"/>
</BugInstance>
- <BugInstance type="JVR_JDBC_VENDOR_RELIANCE" priority="2" abbrev="JVR" category="CORRECTNESS">
+ <BugInstance type="JVR_JDBC_VENDOR_RELIANCE" priority="2" abbrev="JVR" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="JVR_Sample">
<SourceLine classname="JVR_Sample" sourcefile="JVR_Sample.java" sourcepath="JVR_Sample.java"/>
</Class>
@@ -804,7 +810,7 @@
</Method>
<SourceLine classname="JVR_Sample" start="14" end="14" startBytecode="12" endBytecode="12" sourcefile="JVR_Sample.java" sourcepath="JVR_Sample.java"/>
</BugInstance>
- <BugInstance type="LEST_LOST_EXCEPTION_STACK_TRACE" priority="2" abbrev="LEST" category="CORRECTNESS">
+ <BugInstance type="LEST_LOST_EXCEPTION_STACK_TRACE" priority="2" abbrev="LEST" category="CORRECTNESS" firstSeen="12/25/10 2:59 PM">
<Class classname="LEST_Sample">
<SourceLine classname="LEST_Sample" sourcefile="LEST_Sample.java" sourcepath="LEST_Sample.java"/>
</Class>
@@ -813,7 +819,7 @@
</Method>
<SourceLine classname="LEST_Sample" start="17" end="17" startBytecode="28" endBytecode="28" sourcefile="LEST_Sample.java" sourcepath="LEST_Sample.java"/>
</BugInstance>
- <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="3" abbrev="DLS" category="STYLE">
+ <BugInstance type="DLS_DEAD_LOCAL_STORE" priority="3" abbrev="DLS" category="STYLE" firstSeen="12/25/10 2:59 PM">
<Class classname="LII_Sample">
<SourceLine classname="LII_Sample" sourcefile="LII_Sample.java" sourcepath="LII_Sample.java"/>
</Class>
@@ -823,7 +829,7 @@
<LocalVariable name="?" register="7" pc="51" role="LOCAL_VARIABLE_UNKNOWN"/>
<SourceLine classname="LII_Sample" start="67" end="67" startBytecode="51" endBytecode="51" sourcefile="LII_Sample.java" sourcepath="LII_Sample.java"/>
</BugInstance>
- <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE">
+ <BugInstance type="ISB_INEFFICIENT_STRING_BUFFERING" priority="2" abbrev="ISB" category="PERFORMANCE" firstSeen="12/25/10 2:59 PM">
...
[truncated message content] |