Skip to content

Commit

Permalink
Merge pull request #251 from MarkEWaite/suppress-more-spotbugs-warnings
Browse files Browse the repository at this point in the history
Suppress warnings for spotbugs 4.8.3
  • Loading branch information
jglick authored Jan 16, 2024
2 parents 6b5b24d + 6aa94ca commit f044f89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.76</version>
<version>4.77</version>
<relativePath />
</parent>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

package org.jenkinsci.plugins.workflow.support.actions;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import hudson.console.AnnotatedLargeText;
import hudson.model.TaskListener;
import java.io.IOException;
Expand All @@ -47,6 +48,7 @@
@Restricted(NoExternalUse.class) // for use from DefaultStepContext only
public class LogStorageAction extends LogAction implements FlowNodeAction, PersistentAction {

@SuppressFBWarnings(value="PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification="TODO clean up")

Check warning on line 51 in src/main/java/org/jenkinsci/plugins/workflow/support/actions/LogStorageAction.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: clean up")
public transient FlowNode node;

private LogStorageAction(FlowNode node) {
Expand Down

0 comments on commit f044f89

Please sign in to comment.