Skip to content

Commit

Permalink
fixing broken javadoc tags
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed May 4, 2024
1 parent e5498f5 commit e7dd9fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bootique-job/src/main/java/io/bootique/job/JobOutcome.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected JobOutcome(JobStatus status, Throwable exception, String message, JobF
}

/**
* @deprecatedto use {@link #getStatus()}
* @deprecated use {@link #getStatus()}
*/
@Deprecated(since = "3.0", forRemoval = true)
public JobStatus getOutcome() {
Expand All @@ -105,7 +105,7 @@ public boolean isSuccess() {
}

/**
* @deprecatedto use {@link #getException()}
* @deprecated use {@link #getException()}
*/
@Deprecated(since = "3.0", forRemoval = true)
public Throwable getThrowable() {
Expand Down
2 changes: 1 addition & 1 deletion bootique-job/src/main/java/io/bootique/job/JobResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public static JobResult skipped(JobMetadata metadata, String message) {
}

/**
* @deprecatedto make possible job lambdas. Current callers must use {@link Job#getMetadata()} instead.
* @deprecated make possible job lambdas. Current callers must use {@link Job#getMetadata()} instead.
*/
@Deprecated(since = "3.0", forRemoval = true)
public JobMetadata getMetadata() {
Expand Down

0 comments on commit e7dd9fc

Please sign in to comment.