Skip to content

Commit

Permalink
DanielWagnerHall for MartinLetis: Fix javadoc tags
Browse files Browse the repository at this point in the history
r18111
  • Loading branch information
illicitonion committed Nov 9, 2012
1 parent 47d8006 commit efe302f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class WebDriverWait extends FluentWait<WebDriver> {
*
* @param driver The WebDriver instance to pass to the expected conditions
* @param timeOutInSeconds The timeout in seconds when an expectation is called
* @see WebDriverWait#ignoring(Class[]) equals
* @see WebDriverWait#ignoring(Class) equals
*/
public WebDriverWait(WebDriver driver, long timeOutInSeconds) {
this(driver, new SystemClock(), Sleeper.SYSTEM_SLEEPER, timeOutInSeconds, DEFAULT_SLEEP_TIMEOUT);
Expand All @@ -48,7 +48,7 @@ public WebDriverWait(WebDriver driver, long timeOutInSeconds) {
* @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.
* @see WebDriverWait#ignoring(Class[]) equals
* @see WebDriverWait#ignoring(Class) equals
*/
public WebDriverWait(WebDriver driver, long timeOutInSeconds, long sleepInMillis) {
this(driver, new SystemClock(), Sleeper.SYSTEM_SLEEPER, timeOutInSeconds, sleepInMillis);
Expand Down

0 comments on commit efe302f

Please sign in to comment.