fix(log-typo): Fix minor typo in javaHomeFromPath warn log (#856)

This commit is contained in:
Florian LOPES
2023-06-16 11:18:13 +02:00
committed by GitHub
parent 0e07a384c4
commit 5d5fb2fc62

View File

@@ -174,7 +174,7 @@ public class DaemonParameters {
private static String javaHomeFromPath() {
LOG.warn(
"Falling back to finding JAVA_HOME by running java executable available in PATH."
+ " You may want to avoid this time consumig task by setting JAVA_HOME environment variable"
+ " You may want to avoid this time consuming task by setting JAVA_HOME environment variable"
+ " or by passing java.home system property through command line or in one of mvnd configuration files.");
final String jHome = OsUtils.findJavaHomeFromJavaExecutable("java");
if (null != jHome) {