Skip to content

Commit

Permalink
Fix javadoc errors introduced in Netflix#699
Browse files Browse the repository at this point in the history
  • Loading branch information
tgianos committed Mar 2, 2018
1 parent 7a0796d commit ce3870e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class Criterion {
/**
* Get the id of the resource desired if it exists.
*
* @return {@link Optional<String>} wrapping the id
* @return {@link Optional} wrapping the id
*/
public Optional<String> getId() {
return Optional.ofNullable(this.id);
Expand All @@ -69,7 +69,7 @@ public Optional<String> getId() {
/**
* Get the name of the resource desired if it exists.
*
* @return {@link Optional<String>} wrapping the name
* @return {@link Optional} wrapping the name
*/
public Optional<String> getName() {
return Optional.ofNullable(this.name);
Expand All @@ -78,7 +78,7 @@ public Optional<String> getName() {
/**
* Get the desired status of the resource if it has been set by the creator.
*
* @return {@link Optional<String>} wrapping the status
* @return {@link Optional} wrapping the status
*/
public Optional<String> getStatus() {
return Optional.ofNullable(this.status);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public Builder withCommandArgs(@Nullable final List<String> commandArgs) {
/**
* Set the timeout (in seconds) that the job should be killed after by the service after it has started.
*
* @param timeout The timeout. Must be greater >= 1 but preferably much higher
* @param timeout The timeout. Must be greater greater than or equal to 1 but preferably much higher
* @return The builder
*/
public Builder withTimeout(@Nullable final Integer timeout) {
Expand Down

0 comments on commit ce3870e

Please sign in to comment.