filtered out false positive findbugs warnings
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1090828 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8d01b77e2e
commit
67704d8e76
|
@ -26,9 +26,34 @@
|
||||||
<!-- Reason: Optimization to use == -->
|
<!-- Reason: Optimization to use == -->
|
||||||
<Match>
|
<Match>
|
||||||
<Class name="org.apache.commons.lang3.BooleanUtils" />
|
<Class name="org.apache.commons.lang3.BooleanUtils" />
|
||||||
|
<Or>
|
||||||
<Method name="toBoolean" />
|
<Method name="toBoolean" />
|
||||||
|
<Method name="toBooleanObject" />
|
||||||
|
</Or>
|
||||||
<Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
|
<Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
|
||||||
</Match>
|
</Match>
|
||||||
|
<Match>
|
||||||
|
<Class name="org.apache.commons.lang3.BooleanUtils" />
|
||||||
|
<Method name="toBoolean" />
|
||||||
|
<Bug pattern="RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN" />
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
<!-- Reason: Behavior documented in javadoc -->
|
||||||
|
<Match>
|
||||||
|
<Class name="org.apache.commons.lang3.BooleanUtils" />
|
||||||
|
<Or>
|
||||||
|
<Method name="negate" />
|
||||||
|
<Method name="toBooleanObject" />
|
||||||
|
</Or>
|
||||||
|
<Bug pattern="NP_BOOLEAN_RETURN_NULL" />
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
<!-- Reason: base class cannot be changed and field is properly checked against null so behavior is OK -->
|
||||||
|
<Match>
|
||||||
|
<Class name="org.apache.commons.lang3.text.ExtendedMessageFormat" />
|
||||||
|
<Method name="applyPattern" />
|
||||||
|
<Bug pattern="UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR" />
|
||||||
|
</Match>
|
||||||
|
|
||||||
<!-- Reason: Optimization to use == -->
|
<!-- Reason: Optimization to use == -->
|
||||||
<Match>
|
<Match>
|
||||||
|
|
Loading…
Reference in New Issue