diff --git a/independent-projects/arc/runtime/src/main/java/io/quarkus/arc/InjectableBean.java b/independent-projects/arc/runtime/src/main/java/io/quarkus/arc/InjectableBean.java index 4911c1d619bc5..28492d467e301 100644 --- a/independent-projects/arc/runtime/src/main/java/io/quarkus/arc/InjectableBean.java +++ b/independent-projects/arc/runtime/src/main/java/io/quarkus/arc/InjectableBean.java @@ -132,14 +132,14 @@ default boolean isSuppressed() { /** * A bean may have a priority assigned. *

- * Class-based beans can specify the priority declaratively via {@link jakarta.annotation.Priority}. If no priority - * annotation is used then a bean has the priority of value 0. + * Class-based beans and producer beans can specify the priority declaratively via {@link jakarta.annotation.Priority}. + * If no priority annotation is used then a bean has the priority of value 0. *

* This priority is used to sort the resolved beans when performing programmatic lookup via * {@link Instance} or when injecting a list of beans by means of the {@link All} qualifier. * * @return the priority - * @see Priority + * @see jakarta.annotation.Priority */ default int getPriority() { return 0;