Skip to content

Commit

Permalink
Improve methods doc
Browse files Browse the repository at this point in the history
  • Loading branch information
filip26 committed Dec 6, 2023
1 parent 9f9d2eb commit d612188
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static ProcessingRuntime of(JsonLdOptions options) {
*
* @throws JsonLdError if a processing has exceeded
*/
public void tick() throws JsonLdError {}
public void tick() throws JsonLdError {/* NOP does nothing if timeout is not set */}

/**
* Resume ticker, a next ping decreases remaining time if timeout is set. Is
Expand All @@ -46,7 +46,7 @@ public void tick() throws JsonLdError {}
*
* Does nothing if timeout is not set.
*/
public void resetTicker() {}
public void resetTicker() {/* NOP does nothing if timeout is not set */}

public boolean isUriValidation() {
return options.isUriValidation();
Expand Down

0 comments on commit d612188

Please sign in to comment.