We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04f6fa5 commit 1d0d38aCopy full SHA for 1d0d38a
src/main/java/com/checkmarx/ast/wrapper/CxConfig.java
@@ -57,8 +57,8 @@ List<String> toArguments() {
57
commands.add(CxConstants.BASE_AUTH_URI);
58
commands.add(getBaseAuthUri());
59
}
60
-
61
- commands.addAll(getAdditionalParameters());
+ if (getAdditionalParameters() != null)
+ commands.addAll(getAdditionalParameters());
62
63
return commands;
64
0 commit comments