Skip to content

Commit

Permalink
Needed to fix null issue in JFrog artifactory
Browse files Browse the repository at this point in the history
  • Loading branch information
tsemachh committed Jan 7, 2025
1 parent 04f6fa5 commit 1d0d38a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/checkmarx/ast/wrapper/CxConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ List<String> toArguments() {
commands.add(CxConstants.BASE_AUTH_URI);
commands.add(getBaseAuthUri());
}

commands.addAll(getAdditionalParameters());
if (getAdditionalParameters() != null)
commands.addAll(getAdditionalParameters());

return commands;
}
Expand Down

0 comments on commit 1d0d38a

Please sign in to comment.