Skip to content

Commit

Permalink
fix findbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
donhui committed Sep 26, 2022
1 parent 6e8dd03 commit 865eb5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class MavenSnapshotCheck extends Builder implements SimpleBuildStep{
private String NOT_CHECKED = "No, it wasn't checked.";

private boolean check;
private static String pomFiles = DEFAULT_POM_FILES;
private String pomFiles = DEFAULT_POM_FILES;

@DataBoundConstructor
public MavenSnapshotCheck(boolean check, String pomFiles) {
Expand All @@ -52,7 +52,7 @@ public void setCheck(boolean check) {
this.check = check;
}

public static String getPomFiles() {
public String getPomFiles() {
return pomFiles;
}

Expand Down

0 comments on commit 865eb5a

Please sign in to comment.