Skip to content

Commit

Permalink
Merge pull request #286 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 1f2ff22 + 00ecfef commit 0fb18e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.76</version>
<version>4.77</version>
<relativePath/>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import com.google.common.collect.ImmutableSet;
import edu.umd.cs.findbugs.annotations.CheckForNull;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import hudson.Extension;
import hudson.FilePath;
import hudson.Launcher;
Expand All @@ -48,7 +49,9 @@
public class SSHUserPrivateKeyBinding extends MultiBinding<SSHUserPrivateKey> {

public final String keyFileVariable;
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "TODO clean up")

Check warning on line 52 in src/main/java/org/jenkinsci/plugins/credentialsbinding/impl/SSHUserPrivateKeyBinding.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: clean up")
public String usernameVariable;
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "TODO clean up")

Check warning on line 54 in src/main/java/org/jenkinsci/plugins/credentialsbinding/impl/SSHUserPrivateKeyBinding.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: clean up")
public String passphraseVariable;

@DataBoundConstructor public SSHUserPrivateKeyBinding(@NonNull String keyFileVariable, String credentialsId) {
Expand Down

0 comments on commit 0fb18e0

Please sign in to comment.