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 80ca9fd commit b173baaCopy full SHA for b173baa
src/main/java/com/checkmarx/ast/wrapper/CxConfig.java
@@ -43,17 +43,17 @@ List<String> toArguments() {
43
commands.add(getClientSecret());
44
}
45
46
- if (StringUtils.isNotEmpty(getTenant())) {
+ if (StringUtils.isNotBlank(getTenant())) {
47
commands.add(CxConstants.TENANT);
48
commands.add(getTenant());
49
50
51
- if (StringUtils.isNotEmpty(getBaseUri())) {
+ if (StringUtils.isNotBlank(getBaseUri())) {
52
commands.add(CxConstants.BASE_URI);
53
commands.add(getBaseUri());
54
55
56
- if (StringUtils.isNotEmpty(getBaseAuthUri())) {
+ if (StringUtils.isNotBlank(getBaseAuthUri())) {
57
commands.add(CxConstants.BASE_AUTH_URI);
58
commands.add(getBaseAuthUri());
59
0 commit comments