Skip to content

Commit

Permalink
all elements of alias
Browse files Browse the repository at this point in the history
  • Loading branch information
voxparcxls committed Feb 16, 2024
1 parent 92cd7c9 commit b36a7eb
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions cws-installer/src/main/java/jpl/cws/task/CwsInstaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -2504,10 +2504,6 @@ private static int validateKeystoreTruststore() {
print(" Days Until expiration: " + numDays + " days");
print("");
return 0;
} else {
print(" [OK]");
print("");
return 0; // no warnings
}
}
} catch (Exception e) {
Expand All @@ -2518,7 +2514,9 @@ private static int validateKeystoreTruststore() {
log.error("Keystore Storepass ERROR: " + e.getMessage());
return 1;
}
return 0;
print(" [OK]");
print("");
return 0; // no warnings
}

/**
Expand Down

0 comments on commit b36a7eb

Please sign in to comment.