matriv commented on code in PR #211:
URL:
https://github.com/apache/maven-jlink-plugin/pull/211#discussion_r1884066634
##########
src/main/java/org/apache/maven/plugins/jlink/AbstractJLinkToolchainExecutor.java:
##########
@@ -172,7 +169,7 @@ private int executeCommand(Commandline cmd) throws
MojoExecutionException {
StringBuilder msg = new StringBuilder("\nExit code: ");
msg.append(exitCode);
- if (StringUtils.isNotEmpty(err.getOutput())) {
+ if (!err.getOutput().isBlank()) {
Review Comment:
addressed, thx.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]