blob: bd7d3ffb9d22d4f40630a347b3ae47748dcf2eb5 [file] [log] [blame]
<FindBugsFilter>
<!-- Ignore generated code -->
<Match>
<Or>
<!--
<Class name="org.eclipse.skills..."/>
<Package name="org.eclipse.skills..."/>
-->
</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>