From 5d22480d4cc176b0231f050006975c25254aab5d Mon Sep 17 00:00:00 2001 From: Nathan Erwin Date: Sun, 29 Oct 2023 11:29:19 -0400 Subject: [PATCH] update quarkus-scheduler startMode documentation * removed the paragraph tags from the enum javadoc because they don't translate well into asciidoc and subsequently HTML tooltips * potential fix for https://github.com/quarkusio/quarkus/issues/36401 Signed-off-by:Nathan Erwin Signed-off-by:Nathan Erwin --- .../scheduler/runtime/SchedulerRuntimeConfig.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SchedulerRuntimeConfig.java b/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SchedulerRuntimeConfig.java index 3644e585390fc0..82ab19f038cad6 100644 --- a/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SchedulerRuntimeConfig.java +++ b/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SchedulerRuntimeConfig.java @@ -38,17 +38,15 @@ public enum StartMode { NORMAL, /** - * The scheduler will be started even if no scheduled business methods are found. - *

- * This is necessary for "pure" programmatic scheduling. + * The scheduler will be started even if no scheduled business methods are found. This is necessary for "pure" + * programmatic scheduling. */ FORCED, /** * Just like the {@link #FORCED} mode but the scheduler will not start triggering jobs until {@link Scheduler#resume()} - * is called. - *

- * This can be useful to run some initialization logic that needs to be performed before the scheduler starts. + * is called. This can be useful to run some initialization logic that needs to be performed before the scheduler + * starts. */ HALTED; }