[Fb-contrib-commit] fb-contrib/etc findbugs.xml,1.30,1.31 messages.xml,1.29,1.30
Brought to you by:
dbrosius
|
From: Dave B. <dbr...@us...> - 2005-11-02 06:07:13
|
Update of /cvsroot/fb-contrib/fb-contrib/etc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4578/etc Modified Files: findbugs.xml messages.xml Log Message: new detector CAO - intial checkin Index: messages.xml =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/etc/messages.xml,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- messages.xml 2 Nov 2005 04:57:26 -0000 1.29 +++ messages.xml 2 Nov 2005 06:07:00 -0000 1.30 @@ -225,7 +225,7 @@ </Details> </Detector> - <Detector class="com.mebigfatguy.fbcontrib.detect.ConfusingAutoboxedOverriding"> + <Detector class="com.mebigfatguy.fbcontrib.detect.ConfusingAutoboxedOverloading"> <Details> <![CDATA[ <p> Looks for methods that have the same signature, except where one uses a @@ -456,7 +456,7 @@ </Details> </BugPattern> - <BugPattern type="CAO_CONFUSING_AUTOBOXED_OVERRIDING"> + <BugPattern type="CAO_CONFUSING_AUTOBOXED_OVERLOADING"> <ShortDescription>class defines methods which confuse Character with int parameters</ShortDescription> <LongDescription>class {0} defines methods which confuse Character with int parameters</LongDescription> <Details> @@ -487,6 +487,6 @@ <BugCode abbrev="MAC">Manual Array Copy</BugCode> <BugCode abbrev="FPL">Floating Point Loops</BugCode> <BugCode abbrev="NCMU">Non Collection Method Use</BugCode> - <BugCode abbrev="CAO">Confusing Autoboxed Overriding</BugCode> + <BugCode abbrev="CAO">Confusing Autoboxed Overloading</BugCode> </MessageCollection> \ No newline at end of file Index: findbugs.xml =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/etc/findbugs.xml,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- findbugs.xml 2 Nov 2005 04:57:26 -0000 1.30 +++ findbugs.xml 2 Nov 2005 06:07:00 -0000 1.31 @@ -78,9 +78,9 @@ speed="fast" reports="FPL_FLOATING_POINT_LOOPS" /> - <Detector class="com.mebigfatguy.fbcontrib.detect.ConfusingAutoboxedOverriding" + <Detector class="com.mebigfatguy.fbcontrib.detect.ConfusingAutoboxedOverloading" speed="fast" - reports="CAO_CONFUSING_AUTOBOXED_OVERRIDING" /> + reports="CAO_CONFUSING_AUTOBOXED_OVERLOADING" /> <!-- BugPattern --> @@ -101,6 +101,6 @@ <BugPattern abbrev="MAC" type="MAC_MANUAL_ARRAY_COPY" category="PERFORMANCE" /> <BugPattern abbrev="FPL" type="FPL_FLOATING_POINT_LOOPS" category="CORRECTNESS" /> <BugPattern abbrev="NCMU" type="NCMU_NON_COLLECTION_METHOD_USE" category="STYLE" experimental="true" /> - <BugPattern abbrev="CAO" type="CAO_CONFUSING_AUTOBOXED_OVERRIDING" category="CORRECTNESS" experimental="true" /> + <BugPattern abbrev="CAO" type="CAO_CONFUSING_AUTOBOXED_OVERLOADING" category="CORRECTNESS" experimental="true" /> </FindbugsPlugin> \ No newline at end of file |