From 47f09aa9deae081ddb87276c32a28edd1544f603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Tue, 16 Mar 2021 14:33:48 +0100 Subject: [PATCH] Fix a log typo in the ReflectiveHierarchyStep --- .../io/quarkus/deployment/steps/ReflectiveHierarchyStep.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/deployment/src/main/java/io/quarkus/deployment/steps/ReflectiveHierarchyStep.java b/core/deployment/src/main/java/io/quarkus/deployment/steps/ReflectiveHierarchyStep.java index 1187de34273b6..0ddd07023e62f 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/steps/ReflectiveHierarchyStep.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/steps/ReflectiveHierarchyStep.java @@ -90,7 +90,7 @@ public void build(CombinedIndexBuildItem combinedIndexBuildItem, log.warnf( "Unable to properly register the hierarchy of the following classes for reflection as they are not in the Jandex index:%n%s" + "%nConsider adding them to the index either by creating a Jandex index " - + "for your dependency via the Maven plugin, an empty META-INF/beans.xml or quarkus.index-dependency properties.\");.", + + "for your dependency via the Maven plugin, an empty META-INF/beans.xml or quarkus.index-dependency properties.", unindexedClassesWarn.toString()); } }