Skip to content

Commit

Permalink
[java] More javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed May 28, 2019
1 parent 83b3352 commit 3a221e3
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 @@ -37,15 +37,15 @@ public RequestPattern(String urlPattern,
}

/**
* Wildcards ('*' -> zero or more, '?' -> exactly one) are allowed. Escape character is backslash.
* Wildcards ('*' -> zero or more, '?' -> exactly one) are allowed. Escape character is backslash.
* Omitting is equivalent to "*".
*/
public String getUrlPattern() {
return urlPattern;
}

/**
* Wildcards ('*' -> zero or more, '?' -> exactly one) are allowed. Escape character is backslash.
* Wildcards ('*' -> zero or more, '?' -> exactly one) are allowed. Escape character is backslash.
* Omitting is equivalent to "*".
*/
public void setUrlPattern(String urlPattern) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ public WebDriverWait(WebDriver driver, long timeoutInSeconds, long sleepInMillis
* list by calling ignoring(exceptions to add).
*
* @param driver The WebDriver instance to pass to the expected conditions
* @param timeoutInSeconds The timeout in seconds when an expectation is called
* @param sleepInMillis The duration in milliseconds to sleep between polls.
* @param timeout The timeout in seconds when an expectation is called
* @param sleep The duration in milliseconds to sleep between polls.
* @see WebDriverWait#ignoring(java.lang.Class)
*/
public WebDriverWait(WebDriver driver, Duration timeout, Duration sleep) {
Expand Down

0 comments on commit 3a221e3

Please sign in to comment.