Author: britter
Date: Wed Oct 23 19:15:54 2013
New Revision: 1535124

URL: http://svn.apache.org/r1535124
Log:
Add FindBugs exclusion for replacement of deprecated method

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=1535124&r1=1535123&r2=1535124&view=diff
==============================================================================
--- commons/proper/lang/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/lang/trunk/findbugs-exclude-filter.xml Wed Oct 23 19:15:54 
2013
@@ -48,10 +48,11 @@
     <Bug pattern="NP_BOOLEAN_RETURN_NULL" />
   </Match>
 
-  <!-- Reason: toString to supposed to fall back to default encoding if no 
charsetName is passed in -->
+  <!-- Reason: methods are supposed to fall back to default encoding if no 
charset is specified -->
   <Match>
     <Class name="org.apache.commons.lang3.StringUtils" />
     <Method name="toString" />
+      <Method name="toEncodedString" />
     <Bug pattern="DM_DEFAULT_ENCODING" />
   </Match>
 


Reply via email to