Skip to content

Commit

Permalink
Add new suppressions for most recent spotbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite committed Feb 6, 2024
1 parent a0dc518 commit fc4d0c4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/spotbugs/excludesFilter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
<Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR"/>
<Class name="com.nirima.jenkins.plugins.docker.DockerPluginConfiguration"/>
</Match>
<Match>
<!-- Already suppressed at a different level, continue suppressing -->
<Bug pattern="URF_UNREAD_FIELD"/>
<Class name="com.nirima.jenkins.plugins.docker.builder.DockerBuilderNewTemplate"/>
<Field name="version"/>
</Match>
<Match>
<!-- Deprecated field -->
<Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD"/>
<Class name="com.nirima.jenkins.plugins.docker.builder.DockerBuilderPublisher"/>
<Field name="tag"/>
</Match>

<!--
Here lies technical debt. Exclusions in this section have not yet been triaged. When working on
Expand Down Expand Up @@ -149,4 +161,12 @@
<Match>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
</Match>
<Match>
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE"/>
</Match>
<Match>
<Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
<Class name="com.nirima.jenkins.plugins.docker.DockerSlave"/>
<Field name="dockerTemplate"/>
</Match>
</FindBugsFilter>

0 comments on commit fc4d0c4

Please sign in to comment.