blob: 8f19bb7bcb6b45f143a619ad74ffdc50fcd8069c [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>
</FindBugsFilter>