Add FindBugs exclusion for replacement of deprecated method

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1535124 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-10-23 19:15:54 +00:00
parent 5d35afbe9c
commit b35b6c5762
1 changed files with 2 additions and 1 deletions

View File

@ -48,10 +48,11 @@
<Bug pattern="NP_BOOLEAN_RETURN_NULL" /> <Bug pattern="NP_BOOLEAN_RETURN_NULL" />
</Match> </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> <Match>
<Class name="org.apache.commons.lang3.StringUtils" /> <Class name="org.apache.commons.lang3.StringUtils" />
<Method name="toString" /> <Method name="toString" />
<Method name="toEncodedString" />
<Bug pattern="DM_DEFAULT_ENCODING" /> <Bug pattern="DM_DEFAULT_ENCODING" />
</Match> </Match>