Thread: [Fb-contrib-commit] SF.net SVN: fb-contrib:[1177] trunk/fb-contrib/etc/findbugs.xml
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-04-24 06:51:14
|
Revision: 1177
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1177&view=rev
Author: dbrosius
Date: 2009-04-24 06:51:13 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
new DTEP detector
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-04-24 06:51:00 UTC (rev 1176)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-04-24 06:51:13 UTC (rev 1177)
@@ -340,6 +340,10 @@
speed="fast"
reports="UNNC_UNNECESSARY_NEW_NULL_CHECK" />
+ <Detector class="com.mebigfatguy.fbcontrib.detect.DeprecatedTypesafeEnumPattern"
+ speed="fast"
+ reports="DTEP_DEPRECATED_TYPESAFE_ENUM_PATTERN" />
+
<!-- BugPattern -->
<BugPattern abbrev="ISB" type="ISB_INEFFICIENT_STRING_BUFFERING" category="PERFORMANCE" />
@@ -457,4 +461,5 @@
<BugPattern abbrev="DSOC" type="DSOC_DUBIOUS_SET_OF_COLLECTIONS" category="PERFORMANCE" />
<BugPattern abbrev="BED" type="BED_BOGUS_EXCEPTION_DECLARATION" category="CORRECTNESS" experimental="true" />
<BugPattern abbrev="UNNC" type="UNNC_UNNECESSARY_NEW_NULL_CHECK" category="CORRECTNESS" experimental="true" />
+ <BugPattern abbrev="DTEP" type="DTEP_DEPRECATED_TYPESAFE_ENUM_PATTERN" category="STYLE" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-05-03 04:34:03
|
Revision: 1188
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1188&view=rev
Author: dbrosius
Date: 2009-05-03 04:33:59 +0000 (Sun, 03 May 2009)
Log Message:
-----------
embellish LO with LO_SUSPECT_LOG_PARAMETER
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-05-03 04:33:44 UTC (rev 1187)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-05-03 04:33:59 UTC (rev 1188)
@@ -322,7 +322,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.LoggerOddities"
speed="fast"
- reports="LO_SUSPECT_LOG_CLASS" />
+ reports="LO_SUSPECT_LOG_CLASS,LO_SUSPECT_LOG_PARAMETER" />
<Detector class="com.mebigfatguy.fbcontrib.detect.IncorrectInternalClassUse"
speed="fast"
@@ -457,6 +457,7 @@
<BugPattern abbrev="WEM" type="WEM_WEAK_EXCEPTION_MESSAGING" category="STYLE" />
<BugPattern abbrev="SCSS" type="SCSS_SUSPICIOUS_CLUSTERED_SESSION_SUPPORT" category="CORRECTNESS" />
<BugPattern abbrev="LO" type="LO_SUSPECT_LOG_CLASS" category="CORRECTNESS" />
+ <BugPattern abbrev="LO" type="LO_SUSPECT_LOG_PARAMETER" category="CORRECTNESS" />
<BugPattern abbrev="IICU" type="IICU_INCORRECT_INTERNAL_CLASS_USE" category="CORRECTNESS" />
<BugPattern abbrev="DSOC" type="DSOC_DUBIOUS_SET_OF_COLLECTIONS" category="PERFORMANCE" />
<BugPattern abbrev="BED" type="BED_BOGUS_EXCEPTION_DECLARATION" category="CORRECTNESS" experimental="true" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-07-28 05:58:15
|
Revision: 1222
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1222&view=rev
Author: dbrosius
Date: 2009-07-28 05:58:07 +0000 (Tue, 28 Jul 2009)
Log Message:
-----------
add SUA
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-07-28 05:53:47 UTC (rev 1221)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-07-28 05:58:07 UTC (rev 1222)
@@ -352,6 +352,12 @@
speed="fast"
reports="TBP_TRISTATE_BOOLEAN_PATTERN" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.SuspiciousUninitializedArray"
+ speed="fast"
+ reports="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY"
+ hidden="true" />
+
<!-- BugPattern -->
<BugPattern abbrev="ISB" type="ISB_INEFFICIENT_STRING_BUFFERING" category="PERFORMANCE" />
@@ -474,4 +480,5 @@
<BugPattern abbrev="DTEP" type="DTEP_DEPRECATED_TYPESAFE_ENUM_PATTERN" category="STYLE" experimental="true" />
<BugPattern abbrev="SMA" type="SMA_STUTTERED_METHOD_ARGUMENTS" category="STYLE" experimental="true" />
<BugPattern abbrev="TBP" type="TBP_TRISTATE_BOOLEAN_PATTERN" category="STYLE" experimental="true" />
+ <BugPattern abbrev="SUA" type="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" category="CORRECTNESS" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-07-28 07:12:14
|
Revision: 1226
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1226&view=rev
Author: dbrosius
Date: 2009-07-28 07:12:03 +0000 (Tue, 28 Jul 2009)
Log Message:
-----------
add ITU (hidden)
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-07-28 07:10:48 UTC (rev 1225)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-07-28 07:12:03 UTC (rev 1226)
@@ -357,7 +357,12 @@
speed="fast"
reports="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY"
hidden="true" />
-
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.InappropriateToStringUse"
+ speed="fast"
+ reports="ITU_INAPPROPRIATE_TOSTRING_USE"
+ hidden="true" />
+
<!-- BugPattern -->
<BugPattern abbrev="ISB" type="ISB_INEFFICIENT_STRING_BUFFERING" category="PERFORMANCE" />
@@ -481,4 +486,5 @@
<BugPattern abbrev="SMA" type="SMA_STUTTERED_METHOD_ARGUMENTS" category="STYLE" experimental="true" />
<BugPattern abbrev="TBP" type="TBP_TRISTATE_BOOLEAN_PATTERN" category="STYLE" experimental="true" />
<BugPattern abbrev="SUA" type="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" category="CORRECTNESS" experimental="true" />
+ <BugPattern abbrev="ITU" type="ITU_INAPPROPRIATE_TOSTRING_USE" category="CORRECTNESS" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-07-30 03:45:53
|
Revision: 1228
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1228&view=rev
Author: dbrosius
Date: 2009-07-30 03:45:37 +0000 (Thu, 30 Jul 2009)
Log Message:
-----------
make ITU non-hidden
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-07-29 00:28:43 UTC (rev 1227)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-07-30 03:45:37 UTC (rev 1228)
@@ -360,8 +360,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.InappropriateToStringUse"
speed="fast"
- reports="ITU_INAPPROPRIATE_TOSTRING_USE"
- hidden="true" />
+ reports="ITU_INAPPROPRIATE_TOSTRING_USE" />
<!-- BugPattern -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-06 20:39:09
|
Revision: 1268
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1268&view=rev
Author: dbrosius
Date: 2009-09-06 20:39:02 +0000 (Sun, 06 Sep 2009)
Log Message:
-----------
unhide SUA
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-06 20:38:41 UTC (rev 1267)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-06 20:39:02 UTC (rev 1268)
@@ -355,8 +355,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.SuspiciousUninitializedArray"
speed="fast"
- reports="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY"
- hidden="true" />
+ reports="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" />
<Detector class="com.mebigfatguy.fbcontrib.detect.InappropriateToStringUse"
speed="fast"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-07 04:59:43
|
Revision: 1272
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1272&view=rev
Author: dbrosius
Date: 2009-09-07 04:59:31 +0000 (Mon, 07 Sep 2009)
Log Message:
-----------
make SMA_STUTTERED_METHOD_ARGUMENTS hidden for now
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-07 04:47:40 UTC (rev 1271)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-07 04:59:31 UTC (rev 1272)
@@ -346,7 +346,8 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.StutteredMethodArguments"
speed="fast"
- reports="SMA_STUTTERED_METHOD_ARGUMENTS" />
+ reports="SMA_STUTTERED_METHOD_ARGUMENTS"
+ hidden="true" />
<Detector class="com.mebigfatguy.fbcontrib.detect.TristateBooleanPattern"
speed="fast"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-24 03:49:50
|
Revision: 1292
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1292&view=rev
Author: dbrosius
Date: 2009-09-24 03:49:42 +0000 (Thu, 24 Sep 2009)
Log Message:
-----------
add IPNG
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-24 03:49:25 UTC (rev 1291)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-24 03:49:42 UTC (rev 1292)
@@ -361,6 +361,10 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.InappropriateToStringUse"
speed="fast"
reports="ITU_INAPPROPRIATE_TOSTRING_USE" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.InconsistentParameterNameCasing"
+ speed="fast"
+ reports="IPNC_INCONSISTENT_HTTP_PARAM_CASING" />
<!-- BugPattern -->
@@ -479,11 +483,12 @@
<BugPattern abbrev="LO" type="LO_SUSPECT_LOG_PARAMETER" category="CORRECTNESS" />
<BugPattern abbrev="IICU" type="IICU_INCORRECT_INTERNAL_CLASS_USE" category="CORRECTNESS" />
<BugPattern abbrev="DSOC" type="DSOC_DUBIOUS_SET_OF_COLLECTIONS" category="PERFORMANCE" />
- <BugPattern abbrev="BED" type="BED_BOGUS_EXCEPTION_DECLARATION" category="CORRECTNESS" experimental="true" />
- <BugPattern abbrev="UNNC" type="UNNC_UNNECESSARY_NEW_NULL_CHECK" category="CORRECTNESS" experimental="true" />
- <BugPattern abbrev="DTEP" type="DTEP_DEPRECATED_TYPESAFE_ENUM_PATTERN" category="STYLE" experimental="true" />
- <BugPattern abbrev="SMA" type="SMA_STUTTERED_METHOD_ARGUMENTS" category="STYLE" experimental="true" />
- <BugPattern abbrev="TBP" type="TBP_TRISTATE_BOOLEAN_PATTERN" category="STYLE" experimental="true" />
- <BugPattern abbrev="SUA" type="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" category="CORRECTNESS" experimental="true" />
- <BugPattern abbrev="ITU" type="ITU_INAPPROPRIATE_TOSTRING_USE" category="CORRECTNESS" experimental="true" />
+ <BugPattern abbrev="BED" type="BED_BOGUS_EXCEPTION_DECLARATION" category="CORRECTNESS" />
+ <BugPattern abbrev="UNNC" type="UNNC_UNNECESSARY_NEW_NULL_CHECK" category="CORRECTNESS" />
+ <BugPattern abbrev="DTEP" type="DTEP_DEPRECATED_TYPESAFE_ENUM_PATTERN" category="STYLE" />
+ <BugPattern abbrev="SMA" type="SMA_STUTTERED_METHOD_ARGUMENTS" category="STYLE" />
+ <BugPattern abbrev="TBP" type="TBP_TRISTATE_BOOLEAN_PATTERN" category="STYLE" />
+ <BugPattern abbrev="SUA" type="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" category="CORRECTNESS" />
+ <BugPattern abbrev="ITU" type="ITU_INAPPROPRIATE_TOSTRING_USE" category="CORRECTNESS" />
+ <BugPattern abbrev="IPNG" type="IPNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-24 04:56:40
|
Revision: 1297
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1297&view=rev
Author: dbrosius
Date: 2009-09-24 04:56:34 +0000 (Thu, 24 Sep 2009)
Log Message:
-----------
rename
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-24 04:53:55 UTC (rev 1296)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-24 04:56:34 UTC (rev 1297)
@@ -364,7 +364,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.InconsistentParameterNameCasing"
speed="fast"
- reports="IPNC_INCONSISTENT_HTTP_PARAM_CASING" />
+ reports="IKNC_INCONSISTENT_HTTP_PARAM_CASING" />
<!-- BugPattern -->
@@ -490,5 +490,5 @@
<BugPattern abbrev="TBP" type="TBP_TRISTATE_BOOLEAN_PATTERN" category="STYLE" />
<BugPattern abbrev="SUA" type="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" category="CORRECTNESS" />
<BugPattern abbrev="ITU" type="ITU_INAPPROPRIATE_TOSTRING_USE" category="CORRECTNESS" />
- <BugPattern abbrev="IPNG" type="IPNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
+ <BugPattern abbrev="IKNG" type="IKNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-24 05:01:25
|
Revision: 1301
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1301&view=rev
Author: dbrosius
Date: 2009-09-24 05:01:14 +0000 (Thu, 24 Sep 2009)
Log Message:
-----------
rename
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-24 04:59:11 UTC (rev 1300)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-24 05:01:14 UTC (rev 1301)
@@ -362,7 +362,7 @@
speed="fast"
reports="ITU_INAPPROPRIATE_TOSTRING_USE" />
- <Detector class="com.mebigfatguy.fbcontrib.detect.InconsistentParameterNameCasing"
+ <Detector class="com.mebigfatguy.fbcontrib.detect.InconsistentKeyNameCasing"
speed="fast"
reports="IKNC_INCONSISTENT_HTTP_PARAM_CASING" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-24 05:05:16
|
Revision: 1304
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1304&view=rev
Author: dbrosius
Date: 2009-09-24 05:05:07 +0000 (Thu, 24 Sep 2009)
Log Message:
-----------
rename, ai karumba
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-24 05:04:50 UTC (rev 1303)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-24 05:05:07 UTC (rev 1304)
@@ -490,5 +490,5 @@
<BugPattern abbrev="TBP" type="TBP_TRISTATE_BOOLEAN_PATTERN" category="STYLE" />
<BugPattern abbrev="SUA" type="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" category="CORRECTNESS" />
<BugPattern abbrev="ITU" type="ITU_INAPPROPRIATE_TOSTRING_USE" category="CORRECTNESS" />
- <BugPattern abbrev="IKNG" type="IKNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
+ <BugPattern abbrev="IKNC" type="IKNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-24 06:10:19
|
Revision: 1308
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1308&view=rev
Author: dbrosius
Date: 2009-09-24 06:10:13 +0000 (Thu, 24 Sep 2009)
Log Message:
-----------
add OC detector
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-24 06:09:56 UTC (rev 1307)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-24 06:10:13 UTC (rev 1308)
@@ -365,6 +365,10 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.InconsistentKeyNameCasing"
speed="fast"
reports="IKNC_INCONSISTENT_HTTP_PARAM_CASING" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.OverzealousCasting"
+ speed="fast"
+ reports="OC_OVERZEALOUS_CASTING" />
<!-- BugPattern -->
@@ -491,4 +495,5 @@
<BugPattern abbrev="SUA" type="SUA_SUSPICIOUS_UNINITIALIZED_ARRAY" category="CORRECTNESS" />
<BugPattern abbrev="ITU" type="ITU_INAPPROPRIATE_TOSTRING_USE" category="CORRECTNESS" />
<BugPattern abbrev="IKNC" type="IKNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
+ <BugPattern abbrev="OC" type="OC_OVERZEALOUS_CASTING" category="CORRECTNESS" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-09-26 20:06:48
|
Revision: 1326
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1326&view=rev
Author: dbrosius
Date: 2009-09-26 20:06:42 +0000 (Sat, 26 Sep 2009)
Log Message:
-----------
add PDP Detector
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-09-26 20:06:16 UTC (rev 1325)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-09-26 20:06:42 UTC (rev 1326)
@@ -369,6 +369,10 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.OverzealousCasting"
speed="fast"
reports="OC_OVERZEALOUS_CASTING" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.PoorlyDefinedParameter"
+ speed="fast"
+ reports="PDP_POORLY_DEFINED_PARAMETER" />
<!-- BugPattern -->
@@ -496,4 +500,5 @@
<BugPattern abbrev="ITU" type="ITU_INAPPROPRIATE_TOSTRING_USE" category="CORRECTNESS" />
<BugPattern abbrev="IKNC" type="IKNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
<BugPattern abbrev="OC" type="OC_OVERZEALOUS_CASTING" category="CORRECTNESS" experimental="true" />
+ <BugPattern abbrev="PDP" type="PDP_POORLY_DEFINED_PARAMETER" category="CORRECTNESS" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-10-03 15:43:47
|
Revision: 1350
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1350&view=rev
Author: dbrosius
Date: 2009-10-03 15:43:35 +0000 (Sat, 03 Oct 2009)
Log Message:
-----------
new detector NSE
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-10-03 15:43:19 UTC (rev 1349)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-10-03 15:43:35 UTC (rev 1350)
@@ -373,6 +373,10 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.PoorlyDefinedParameter"
speed="fast"
reports="PDP_POORLY_DEFINED_PARAMETER" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.NonSymmetricEquals"
+ speed="fast"
+ reports="NSE_NON_SYMMETRIC_EQUALS" />
<!-- BugPattern -->
@@ -501,4 +505,5 @@
<BugPattern abbrev="IKNC" type="IKNC_INCONSISTENT_HTTP_PARAM_CASING" category="STYLE" experimental="true" />
<BugPattern abbrev="OC" type="OC_OVERZEALOUS_CASTING" category="CORRECTNESS" experimental="true" />
<BugPattern abbrev="PDP" type="PDP_POORLY_DEFINED_PARAMETER" category="CORRECTNESS" experimental="true" />
+ <BugPattern abbrev="NSE" type="NSE_NON_SYMMETRIC_EQUALS" category="CORRECTNESS" experimental="true" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-10-15 03:34:27
|
Revision: 1369
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1369&view=rev
Author: dbrosius
Date: 2009-10-15 03:34:19 +0000 (Thu, 15 Oct 2009)
Log Message:
-----------
add new detector CVAA - by Bhaskar Maddala
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-10-15 03:34:03 UTC (rev 1368)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-10-15 03:34:19 UTC (rev 1369)
@@ -377,6 +377,10 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.NonSymmetricEquals"
speed="fast"
reports="NSE_NON_SYMMETRIC_EQUALS" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.ContraVariantArrayAssignment"
+ speed="fast"
+ reports="CVAA_CONTRAVARIANT_ARRAY_ASSIGNMENT" />
<!-- BugPattern -->
@@ -506,4 +510,5 @@
<BugPattern abbrev="OC" type="OC_OVERZEALOUS_CASTING" category="CORRECTNESS" experimental="true" />
<BugPattern abbrev="PDP" type="PDP_POORLY_DEFINED_PARAMETER" category="CORRECTNESS" experimental="true" />
<BugPattern abbrev="NSE" type="NSE_NON_SYMMETRIC_EQUALS" category="CORRECTNESS" experimental="true" />
+ <BugPattern abbrev="CVAA" type="CVAA_CONTRAVARIANT_ARRAY_ASSIGNMENT" category="CORRECTNESS" experimental="true"/>
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2009-12-20 01:20:58
|
Revision: 1407
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1407&view=rev
Author: dbrosius
Date: 2009-12-20 01:20:50 +0000 (Sun, 20 Dec 2009)
Log Message:
-----------
WNG not ready for prime time yet
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-12-20 00:53:53 UTC (rev 1406)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-12-20 01:20:50 UTC (rev 1407)
@@ -314,7 +314,7 @@
speed="fast" reports="NFF_NON_FUNCTIONAL_FIELD" />
<Detector class="com.mebigfatguy.fbcontrib.detect.WrongNullGuard"
- speed="fast" reports="WNG_WRONG_NULL_FIELD_GUARD,WNG_WRONG_NULL_LOCAL_GUARD" />
+ speed="fast" hidden="true" reports="WNG_WRONG_NULL_FIELD_GUARD,WNG_WRONG_NULL_LOCAL_GUARD" />
<!-- BugPattern -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2010-02-16 22:29:04
|
Revision: 1517
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1517&view=rev
Author: dbrosius
Date: 2010-02-16 22:28:56 +0000 (Tue, 16 Feb 2010)
Log Message:
-----------
typo found by Jean-Noel Rouvignac
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2010-02-12 19:08:42 UTC (rev 1516)
+++ trunk/fb-contrib/etc/findbugs.xml 2010-02-16 22:28:56 UTC (rev 1517)
@@ -318,7 +318,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.MoreDumbMethods"
speed="fast"
- reports="MDM_RUNTIME_EXIT_OR_HALT,MDM_RUNFINALIZATION,EQ_BIGDECIMAL_EQUALS,MDM_INETADDRESS_GETLOCALHOST,MDM_PROMISCUOUS_SERVERSOCKET,MDM_RANDOM_SEED,MDM_SECURERANDOM_CTOR,MDM_SECURERANDOM_GETSEED,MDM_THREAD_PRIORITIES,MDM_THREAD_YIELD,MDM_WAIT_WITHOUT_TIMEOUT,MDM_THREAD_FAIRNESS,MDM_REENTRANTLOCK_HELDBY,MDM_STRING_BYTES_ENCODING,MDM_SETDEFAULTLOCALE" />
+ reports="MDM_RUNTIME_EXIT_OR_HALT,MDM_RUNFINALIZATION,MDM_BIGDECIMAL_EQUALS,MDM_INETADDRESS_GETLOCALHOST,MDM_PROMISCUOUS_SERVERSOCKET,MDM_RANDOM_SEED,MDM_SECURERANDOM_CTOR,MDM_SECURERANDOM_GETSEED,MDM_THREAD_PRIORITIES,MDM_THREAD_YIELD,MDM_WAIT_WITHOUT_TIMEOUT,MDM_THREAD_FAIRNESS,MDM_REENTRANTLOCK_HELDBY,MDM_STRING_BYTES_ENCODING,MDM_SETDEFAULTLOCALE" />
<Detector class="com.mebigfatguy.fbcontrib.detect.ReflectionOnObjectMethods"
speed="fast"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2010-04-04 05:41:28
|
Revision: 1527
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1527&view=rev
Author: dbrosius
Date: 2010-04-04 05:41:22 +0000 (Sun, 04 Apr 2010)
Log Message:
-----------
uncomment PCAIL
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2010-04-04 04:31:58 UTC (rev 1526)
+++ trunk/fb-contrib/etc/findbugs.xml 2010-04-04 05:41:22 UTC (rev 1527)
@@ -327,11 +327,11 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.ImproperPropertiesUse"
speed="fast"
reports="IPU_IMPROPER_PROPERTIES_USE,IPU_IMPROPER_PROPERTIES_USE_SETPROPERTY" />
-<!--
+
<Detector class="com.mebigfatguy.fbcontrib.detect.PossibleConstantAllocationInLoop"
speed="fast"
reports="PCAIL_POSSIBLE_CONSTANT_ALLOCATION_IN_LOOP" />
- -->
+
<!-- BugPattern -->
<BugPattern abbrev="ISB" type="ISB_INEFFICIENT_STRING_BUFFERING"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2010-07-17 15:49:24
|
Revision: 1583
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1583&view=rev
Author: dbrosius
Date: 2010-07-17 15:49:17 +0000 (Sat, 17 Jul 2010)
Log Message:
-----------
remove experimental flag on some
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2010-07-17 15:45:44 UTC (rev 1582)
+++ trunk/fb-contrib/etc/findbugs.xml 2010-07-17 15:49:17 UTC (rev 1583)
@@ -512,8 +512,7 @@
<BugPattern abbrev="SPP" type="SPP_USE_ISEMPTY" category="STYLE" />
<BugPattern abbrev="SPP" type="SPP_USE_GETPROPERTY"
category="STYLE" />
- <BugPattern abbrev="SPP" type="SPP_USELESS_CASING" category="PERFORMANCE"
- experimental="true" />
+ <BugPattern abbrev="SPP" type="SPP_USELESS_CASING" category="PERFORMANCE" />
<BugPattern abbrev="SPP" type="SPP_SERIALVER_SHOULD_BE_PRIVATE"
category="STYLE" />
<BugPattern abbrev="SPP" type="SPP_NON_ARRAY_PARM" category="CORRECTNESS" />
@@ -633,15 +632,15 @@
<BugPattern abbrev="ROOM" type="ROOM_REFLECTION_ON_OBJECT_METHODS"
category="CORRECTNESS" />
<BugPattern abbrev="IPU" type="IPU_IMPROPER_PROPERTIES_USE"
- category="CORRECTNESS" experimental="true" />
+ category="CORRECTNESS" />
<BugPattern abbrev="IPU" type="IPU_IMPROPER_PROPERTIES_USE_SETPROPERTY"
- category="CORRECTNESS" experimental="true" />
+ category="CORRECTNESS" />
<BugPattern abbrev="PCAIL" type="PCAIL_POSSIBLE_CONSTANT_ALLOCATION_IN_LOOP"
- category="PERFORMANCE" experimental="true" />
+ category="PERFORMANCE" />
<BugPattern abbrev="WOC" type="WOC_WRITE_ONLY_COLLECTION_LOCAL"
- category="CORRECTNESS" experimental="true" />
+ category="CORRECTNESS" />
<BugPattern abbrev="WOC" type="WOC_WRITE_ONLY_COLLECTION_FIELD"
- category="CORRECTNESS" experimental="true" />
+ category="CORRECTNESS" />
<BugPattern abbrev="UVA" type="UVA_USE_VAR_ARGS"
- category="STYLE" experimental="true" />
+ category="STYLE" />
</FindbugsPlugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2010-09-22 06:31:43
|
Revision: 1619
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1619&view=rev
Author: dbrosius
Date: 2010-09-22 06:31:36 +0000 (Wed, 22 Sep 2010)
Log Message:
-----------
Bug 3067921: Missing category for NRTL and SCII -- bad spilleng - thanks Andrei Loskutov
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2010-09-22 06:20:35 UTC (rev 1618)
+++ trunk/fb-contrib/etc/findbugs.xml 2010-09-22 06:31:36 UTC (rev 1619)
@@ -100,7 +100,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.NonOwnedSynchronization" speed="fast" reports="NOS_NON_OWNED_SYNCHRONIZATION" />
- <Detector class="com.mebigfatguy.fbcontrib.detect.NonRecycleableTaglibs" speed="fast" reports="NRTL_NON_RECYCLEABLE_TAG_LIBS" />
+ <Detector class="com.mebigfatguy.fbcontrib.detect.NonRecycleableTaglibs" speed="fast" reports="NRTL_NON_RECYCLEABLE_TAG_LIB" />
<Detector class="com.mebigfatguy.fbcontrib.detect.Section508Compliance" speed="fast"
reports="S508C_NULL_LAYOUT,S508C_NO_SETLABELFOR,S508C_NO_SETSIZE,S508C_NON_ACCESSIBLE_JCOMPONENT,S508C_SET_COMP_COLOR,S508C_NON_TRANSLATABLE_STRING" />
@@ -136,7 +136,7 @@
<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="SCI_SPOILED_CHILD_INTERFACE_IMPLEMENTOR" />
+ <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" />
@@ -266,8 +266,8 @@
<BugPattern abbrev="PMB" type="PMB_POSSIBLE_MEMORY_BLOAT" category="CORRECTNESS" />
<BugPattern abbrev="LSYC" type="LSYC_LOCAL_SYNCHRONIZED_COLLECTION" category="CORRECTNESS" />
<BugPattern abbrev="FCBL" type="FCBL_FIELD_COULD_BE_LOCAL" category="CORRECTNESS" />
+ <BugPattern abbrev="NRTL" type="NRTL_NON_RECYCLEABLE_TAG_LIB" category="CORRECTNESS"/>
<BugPattern abbrev="NOS" type="NOS_NON_OWNED_SYNCHRONIZATION" category="STYLE" />
- <BugPattern abbrev="NRTL" type="NRTL_NON_RECYCLEABLE_TAG_LIB" category="CORRECTNESS" />
<BugPattern abbrev="S508C" type="S508C_NULL_LAYOUT" category="CORRECTNESS" />
<BugPattern abbrev="S508C" type="S508C_NO_SETLABELFOR" category="CORRECTNESS" />
<BugPattern abbrev="S508C" type="S508C_NO_SETSIZE" category="CORRECTNESS" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2010-10-19 01:55:39
|
Revision: 1631
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1631&view=rev
Author: dbrosius
Date: 2010-10-19 01:55:32 +0000 (Tue, 19 Oct 2010)
Log Message:
-----------
comment out CVAA for now
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2010-10-16 05:07:52 UTC (rev 1630)
+++ trunk/fb-contrib/etc/findbugs.xml 2010-10-19 01:55:32 UTC (rev 1631)
@@ -193,9 +193,9 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.PoorlyDefinedParameter" speed="fast" reports="PDP_POORLY_DEFINED_PARAMETER" />
<Detector class="com.mebigfatguy.fbcontrib.detect.NonSymmetricEquals" speed="fast" reports="NSE_NON_SYMMETRIC_EQUALS" />
-<!-- -->
+<!--
<Detector class="com.mebigfatguy.fbcontrib.detect.ContraVariantArrayAssignment" speed="fast" hidden="true" reports="CVAA_CONTRAVARIANT_ARRAY_ASSIGNMENT,CVAA_CONTRAVARIANT_ELEMENT_ASSIGNMENT" />
-<!-- -->
+-->
<Detector class="com.mebigfatguy.fbcontrib.detect.NonFunctionalField" speed="fast" reports="NFF_NON_FUNCTIONAL_FIELD" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2013-07-14 19:44:15
|
Revision: 1750
http://sourceforge.net/p/fb-contrib/code/1750
Author: dbrosius
Date: 2013-07-14 19:44:11 +0000 (Sun, 14 Jul 2013)
Log Message:
-----------
remove BAS from 4.8.4
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2013-07-14 19:26:58 UTC (rev 1749)
+++ trunk/fb-contrib/etc/findbugs.xml 2013-07-14 19:44:11 UTC (rev 1750)
@@ -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_TERNARY,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,SPP_STRINGBUILDER_IS_MUTABLE,SPP_USE_GET0,SPP_DOUBLE_APPENDED_LITERALS" />
-
+<!-- COMMENT OUT FOR RELEASE
<Detector class="com.mebigfatguy.fbcontrib.detect.BloatedAssignmentScope" speed="fast" reports="BAS_BLOATED_ASSIGNMENT_SCOPE" hidden="true" />
-
+ COMMENT OUT FOR RELEASE -->
<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" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2013-10-20 02:31:15
|
Revision: 1753
http://sourceforge.net/p/fb-contrib/code/1753
Author: dbrosius
Date: 2013-10-20 02:31:11 +0000 (Sun, 20 Oct 2013)
Log Message:
-----------
Final v4.8.5 changes
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2013-10-19 23:52:01 UTC (rev 1752)
+++ trunk/fb-contrib/etc/findbugs.xml 2013-10-20 02:31:11 UTC (rev 1753)
@@ -16,25 +16,7 @@
<!-- Detectors -->
<Detector class="com.mebigfatguy.fbcontrib.collect.CollectStatistics" speed="fast" reports="" hidden="true" />
-
-<!-- PERMANENTLY DISABLED
- <Detector class="com.mebigfatguy.fbcontrib.debug.OCSDebugger" speed="fast"/>
--->
-<!-- COMMENT OUT FOR RELEASE -->
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.ClassEnvy" speed="fast" reports="CE_CLASS_ENVY" disabled="true" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.BloatedSynchronizedBlock" speed="fast" reports="BSB_BLOATED_SYNCHRONIZED_BLOCK" hidden="true" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.StutteredMethodArguments" speed="fast" reports="SMA_STUTTERED_METHOD_ARGUMENTS" hidden="true" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.ContraVariantArrayAssignment" speed="fast" hidden="true" reports="CVAA_CONTRAVARIANT_ARRAY_ASSIGNMENT,CVAA_CONTRAVARIANT_ELEMENT_ASSIGNMENT" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.StackedTryBlocks" speed="fast" reports="STB_STACKED_TRY_BLOCKS" />
-
-<!-- COMMENT OUT FOR RELEASE -->
-
<Detector class="com.mebigfatguy.fbcontrib.detect.InefficientStringBuffering" speed="fast" reports="ISB_INEFFICIENT_STRING_BUFFERING,ISB_EMPTY_STRING_APPENDING,ISB_TOSTRING_APPENDING" />
<Detector class="com.mebigfatguy.fbcontrib.detect.SyncCollectionIterators" speed="slow" reports="SCI_SYNCHRONIZED_COLLECTION_ITERATORS" />
@@ -148,8 +130,6 @@
<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_TERNARY,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,SPP_STRINGBUILDER_IS_MUTABLE,SPP_USE_GET0,SPP_DOUBLE_APPENDED_LITERALS,SPP_NULL_BEFORE_INSTANCEOF" />
- <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" />
@@ -242,19 +222,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.CloneUsability" speed="fast" reports="CU_CLONE_USABILITY_OBJECT_RETURN,CU_CLONE_USABILITY_MISMATCHED_RETURN,CU_CLONE_USABILITY_THROWS" />
-<!-- For 5.0.0
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.ConfusingArrayAsList" speed="fast" reports="CAAL_CONFUSING_ARRAY_AS_LIST" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.PresizeCollections" speed="fast" reports="PSC_PRESIZE_COLLECTIONS" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.UnboundMethodTemplateParameter" speed="fast" reports="UMTP_UNBOUND_METHOD_TEMPLATE_PARAMETER" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.NonProductiveMethodCall" speed="fast" reports="NPMC_NON_PRODUCTIVE_METHOD_CALL" />
-
- <Detector class="com.mebigfatguy.fbcontrib.detect.ArrayIndexOutOfBounds" speed="fast" reports="AIOB_ARRAY_INDEX_OUT_OF_BOUNDS,AIOB_ARRAY_STORE_TO_NULL_REFERENCE" />
-
--->
+
<!-- BugPattern -->
<BugPattern abbrev="ISB" type="ISB_INEFFICIENT_STRING_BUFFERING" category="PERFORMANCE" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2013-11-17 21:58:03
|
Revision: 1757
http://sourceforge.net/p/fb-contrib/code/1757
Author: dbrosius
Date: 2013-11-17 21:58:00 +0000 (Sun, 17 Nov 2013)
Log Message:
-----------
sync from git
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2013-11-17 21:50:52 UTC (rev 1756)
+++ trunk/fb-contrib/etc/findbugs.xml 2013-11-17 21:58:00 UTC (rev 1757)
@@ -15,6 +15,24 @@
<!-- Detectors -->
+<!-- COMMENT OUT FOR RELEASE
+
+ <Detector class="com.mebigfatguy.fbcontrib.debug.OCSDebugger" speed="fast"/>
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.ClassEnvy" speed="fast" reports="CE_CLASS_ENVY" disabled="true" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.BloatedSynchronizedBlock" speed="fast" reports="BSB_BLOATED_SYNCHRONIZED_BLOCK" hidden="true" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.StutteredMethodArguments" speed="fast" reports="SMA_STUTTERED_METHOD_ARGUMENTS" hidden="true" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.ContraVariantArrayAssignment" speed="fast" hidden="true" reports="CVAA_CONTRAVARIANT_ARRAY_ASSIGNMENT,CVAA_CONTRAVARIANT_ELEMENT_ASSIGNMENT" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.StackedTryBlocks" speed="fast" reports="STB_STACKED_TRY_BLOCKS" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.BloatedAssignmentScope" speed="fast" reports="BAS_BLOATED_ASSIGNMENT_SCOPE" hidden="true" />
+
+ COMMENT OUT FOR RELEASE -->
+
<Detector class="com.mebigfatguy.fbcontrib.collect.CollectStatistics" speed="fast" reports="" hidden="true" />
<Detector class="com.mebigfatguy.fbcontrib.detect.InefficientStringBuffering" speed="fast" reports="ISB_INEFFICIENT_STRING_BUFFERING,ISB_EMPTY_STRING_APPENDING,ISB_TOSTRING_APPENDING" />
@@ -130,8 +148,6 @@
<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_TERNARY,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,SPP_STRINGBUILDER_IS_MUTABLE,SPP_USE_GET0,SPP_DOUBLE_APPENDED_LITERALS,SPP_NULL_BEFORE_INSTANCEOF" />
- <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" />
@@ -231,6 +247,12 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.NonProductiveMethodCall" speed="fast" reports="NPMC_NON_PRODUCTIVE_METHOD_CALL" />
<Detector class="com.mebigfatguy.fbcontrib.detect.InvalidConstantArgument" speed="fast" reports="ICA_INVALID_CONSTANT_ARRAY" />
+
+ <!--
+ <Detector class="com.mebigfatguy.fbcontrib.detect.PresizeCollections" speed="fast" reports="PSC_PRESIZE_COLLECTIONS" />
+
+ <Detector class="com.mebigfatguy.fbcontrib.detect.ArrayIndexOutOfBounds" speed="fast" reports="AIOB_ARRAY_INDEX_OUT_OF_BOUNDS,AIOB_ARRAY_STORE_TO_NULL_REFERENCE" />
+ -->
<!-- BugPattern -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2014-03-18 05:58:28
|
Revision: 1769
http://sourceforge.net/p/fb-contrib/code/1769
Author: dbrosius
Date: 2014-03-18 05:58:25 +0000 (Tue, 18 Mar 2014)
Log Message:
-----------
comment out 'in progress' detectors before release
Modified Paths:
--------------
trunk/fb-contrib/etc/findbugs.xml
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2014-03-18 05:56:28 UTC (rev 1768)
+++ trunk/fb-contrib/etc/findbugs.xml 2014-03-18 05:58:25 UTC (rev 1769)
@@ -20,7 +20,7 @@
<!-- Detectors -->
-<!-- COMMENT OUT FOR RELEASE -->
+<!-- COMMENT OUT FOR RELEASE
<Detector class="com.mebigfatguy.fbcontrib.debug.OCSDebugger" speed="fast"/>
@@ -34,7 +34,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.BloatedAssignmentScope" speed="fast" reports="BAS_BLOATED_ASSIGNMENT_SCOPE" hidden="true" />
-<!-- COMMENT OUT FOR RELEASE -->
+ COMMENT OUT FOR RELEASE -->
<Detector class="com.mebigfatguy.fbcontrib.collect.CollectStatistics" speed="fast" reports="" hidden="true" />
@@ -265,12 +265,12 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.ModifyingUnmodifiableCollection" speed="fast" reports="MUC_MODIFYING_UNMODIFIABLE_COLLECTION"/>
- <!-- COMMENT OUT FOR POINT RELEASE -->
+ <!-- COMMENT OUT FOR POINT RELEASE
<Detector class="com.mebigfatguy.fbcontrib.detect.PresizeCollections" speed="fast" reports="PSC_PRESIZE_COLLECTIONS" />
<Detector class="com.mebigfatguy.fbcontrib.detect.ArrayIndexOutOfBounds" speed="fast" reports="AIOB_ARRAY_INDEX_OUT_OF_BOUNDS,AIOB_ARRAY_STORE_TO_NULL_REFERENCE" />
- <!-- COMMENT OUT FOR POINT RELEASE -->
+ COMMENT OUT FOR POINT RELEASE -->
<!-- BugPattern -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|