Skip to content

Commit

Permalink
Fix wrong Toolchain message
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Jul 2, 2024
1 parent f2df06d commit 658625b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ public void execute() {
// use the compilerId as identifier for toolchains as well.
Optional<Toolchain> tc = getToolchain();
if (tc.isPresent()) {
getLog().info("Toolchain in maven-compiler-plugin: " + tc);
getLog().info("Toolchain in maven-compiler-plugin: " + tc.get());
if (executable != null) {
getLog().warn("Toolchains are ignored, 'executable' parameter is set to " + executable);
} else {
Expand Down

0 comments on commit 658625b

Please sign in to comment.