diff --git a/core/runtime/src/main/java/io/quarkus/runtime/annotations/RegisterForReflection.java b/core/runtime/src/main/java/io/quarkus/runtime/annotations/RegisterForReflection.java index 9d697983ba294..39c3344d8bdbc 100644 --- a/core/runtime/src/main/java/io/quarkus/runtime/annotations/RegisterForReflection.java +++ b/core/runtime/src/main/java/io/quarkus/runtime/annotations/RegisterForReflection.java @@ -9,8 +9,10 @@ * Annotation that can be used to force a class to be registered for reflection in native image mode. * Note that by default the class itself is registered including nested classes and interfaces, * but not the full class hierarchy. This can be changed by setting: - * {@link #ignoreNested()} to true, to ignore nested classes. - * {@link #registerFullHierarchy()} to true, to register the full hierarchy. + * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE)