You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2009/12/10 13:09:04 UTC

svn commit: r889228 - /commons/proper/lang/trunk/findbugs-exclude-filter.xml

Author: bayard
Date: Thu Dec 10 12:09:00 2009
New Revision: 889228

URL: http://svn.apache.org/viewvc?rev=889228&view=rev
Log:
lang -> lang3 (LANG-563)

Modified:
    commons/proper/lang/trunk/findbugs-exclude-filter.xml

Modified: commons/proper/lang/trunk/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/findbugs-exclude-filter.xml?rev=889228&r1=889227&r2=889228&view=diff
==============================================================================
--- commons/proper/lang/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/lang/trunk/findbugs-exclude-filter.xml Thu Dec 10 12:09:00 2009
@@ -25,28 +25,28 @@
 
   <!-- Reason: Optimization to use == -->
   <Match>
-    <Class name="org.apache.commons.lang.BooleanUtils" />
+    <Class name="org.apache.commons.lang3.BooleanUtils" />
     <Method name="toBoolean" />
     <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
   </Match>
 
   <!-- Reason: Optimization to use == -->
   <Match>
-    <Class name="org.apache.commons.lang.StringUtils" />
+    <Class name="org.apache.commons.lang3.StringUtils" />
     <Method name="indexOfDifference"/>
     <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
   </Match>
 
   <!-- Reason: Very much intended to do a fall through on the switch -->
   <Match>
-    <Class name="org.apache.commons.lang.math.NumberUtils" />
+    <Class name="org.apache.commons.lang3.math.NumberUtils" />
     <Method name="createNumber"/>
     <Bug pattern="SF_SWITCH_FALLTHROUGH" />
   </Match>
 
   <!-- Reason: Very much intended to do a fall through on the switch -->
   <Match>
-    <Class name="org.apache.commons.lang.time.DateUtils" />
+    <Class name="org.apache.commons.lang3.time.DateUtils" />
     <Method name="getFragment"/>
     <Bug pattern="SF_SWITCH_FALLTHROUGH" />
   </Match>
@@ -54,41 +54,41 @@
   <!-- Reason: hashCode is lazily loaded in Range classes -->
   <!-- TODO: Work out why regex didn't work here -->
   <Match>
-    <Class name="org.apache.commons.lang.math.DoubleRange" />
+    <Class name="org.apache.commons.lang3.math.DoubleRange" />
     <Field name="hashCode" />
     <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
   </Match>
   <Match>
-    <Class name="org.apache.commons.lang.math.FloatRange" />
+    <Class name="org.apache.commons.lang3.math.FloatRange" />
     <Field name="hashCode" />
     <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
   </Match>
   <Match>
-    <Class name="org.apache.commons.lang.math.IntRange" />
+    <Class name="org.apache.commons.lang3.math.IntRange" />
     <Field name="hashCode" />
     <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
   </Match>
   <Match>
-    <Class name="org.apache.commons.lang.math.LongRange" />
+    <Class name="org.apache.commons.lang3.math.LongRange" />
     <Field name="hashCode" />
     <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
   </Match>
   <Match>
-    <Class name="org.apache.commons.lang.math.NumberRange" />
+    <Class name="org.apache.commons.lang3.math.NumberRange" />
     <Field name="hashCode" />
     <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
   </Match>
 
   <!-- Reason: toProperString is lazily loaded -->
   <Match>
-    <Class name="org.apache.commons.lang.math.Fraction" />
+    <Class name="org.apache.commons.lang3.math.Fraction" />
     <Field name="toProperString" />
     <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
   </Match>
 
   <!-- Reason: It does call super.clone(), but via a subsequent method -->
   <Match>
-    <Class name="org.apache.commons.lang.text.StrTokenizer" />
+    <Class name="org.apache.commons.lang3.text.StrTokenizer" />
     <Method name="clone"/>
     <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
   </Match>