Skip to content

Commit

Permalink
Add missing javadoc for return and throws
Browse files Browse the repository at this point in the history
  • Loading branch information
domi-b committed Dec 6, 2023
1 parent a87f45e commit f160133
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public Runner(TestOptions options, Validator validator) {

/**
* Runs the testbed validation.
* @return {@code true} if the validation was successful, {@code false} otherwise.
*/
public boolean run() {
LOGGER.info("Starting validation of testbed at " + options.basePath());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ public interface Validator {
*
* @param filePath the path to the file to validate.
* @return true if the validation was successful, false otherwise.
* @throws ValidatorException if the validation could not be performed.
*/
boolean validate(Path filePath) throws ValidatorException;
}

0 comments on commit f160133

Please sign in to comment.