From 58c43f00edd763962aa6612d225870e389c4b9ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohwiller?= Date: Thu, 22 Aug 2024 10:24:20 +0200 Subject: [PATCH] #527: fix of fix (#549) --- .../java/com/devonfw/tools/ide/context/AbstractIdeContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java b/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java index 513b6a0b2..3f821a1fc 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java +++ b/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java @@ -221,7 +221,7 @@ private Path findIdeRoot(Path ideHomePath) { } } else if (!ideRootPath.equals(rootPath)) { warning("Variable IDE_ROOT is set to '{}' but for your project '{}' the path '{}' would have been expected.", rootPath, - (this.ideHome == null) ? "undefined" : this.ideHome.getFileName(), ideRootPath); + (ideHomePath == null) ? "undefined" : ideHomePath.getFileName(), ideRootPath); } } }