Skip to content

Commit

Permalink
Fix static check
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalDelarea committed Nov 17, 2024
1 parent 49355be commit acf05a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/io/jenkins/plugins/jfrog/JfStep.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ public class JfStep extends Step {
protected String[] args;
static final Version MIN_CLI_VERSION_PASSWORD_STDIN = new Version("2.31.3");
// The JFrog CLI binary path in the agent
protected static String jfrogBinaryPath;
static String jfrogBinaryPath;
// True if the agent's OS is windows
protected static boolean isWindows;
static boolean isWindows;
// Flag to indicate if the use of password stdin is supported.
protected static boolean passwordStdinSupported;
static boolean passwordStdinSupported;

@DataBoundConstructor
public JfStep(Object args) {
Expand Down

0 comments on commit acf05a5

Please sign in to comment.