blob: 7fe8aef5b7a503fdb4ea74c1eb1a516d5b8c83d3 [file] [log] [blame]
<FindBugsFilter>
<!-- Ignore generated code -->
<Match>
<Or>
<!--
<Class name="org.eclipse.ease..."/>
<Package name="org.eclipse.ease..."/>
-->
</Or>
</Match>
<!-- Ignore spotbugs reports from incomplete detectors -->
<Match>
<Bug pattern="TESTING"/>
</Match>
<!-- Ignore initialization warnings in Unit Tests. We typically initialize in beforeEach() -->
<Match>
<Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
</Match>
<!-- Ignore default encoding when converting byte[] / String -->
<Match>
<Bug pattern="DM_DEFAULT_ENCODING"/>
</Match>
<!-- Allow toUpperCase()/toLowerCase() without locale setting -->
<Match>
<Bug pattern="DM_CONVERT_CASE"/>
</Match>
<!-- Instanceof checks in tests are fine -->
<Match>
<Bug pattern="BC_VACUOUS_INSTANCEOF"/>
</Match>
</FindBugsFilter>