Skip to content

Commit

Permalink
Editing @SInCE doc tags to always point to a GA release
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Nov 25, 2023
1 parent f58f7ef commit 25e25a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import io.bootique.shutdown.ShutdownManager;

/**
* @since 3.0.M1
* @since 3.0
*/
@BQConfig("Consul jobs configuration")
public class ConsulLockHandlerFactory {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public Builder dateTimeParam(String name) {
}

/**
* @since 3.0.M1
* @since 3.0
*/
public Builder dateTimeParam(String name, String defaultValue) {
return dateTimeParam(name, parseDateTime(defaultValue));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ public JobModuleExtender addJob(Class<? extends Job> jobType) {
}

/**
* @since 3.0.M1
* @since 3.0
*/
public JobModuleExtender setLockHandler(LockHandler handler) {
contributeLockHandlers().addInstance(handler);
return this;
}

/**
* @since 3.0.M1
* @since 3.0
*/
public JobModuleExtender setLockHandler(Class<? extends LockHandler> handlerType) {
contributeLockHandlers().add(handlerType);
Expand Down

0 comments on commit 25e25a2

Please sign in to comment.