Skip to content

Commit 75f4774

Browse files
committed
Fix the javadoc target
1 parent 1e22193 commit 75f4774

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ ie_generate_type_mapping(:name => "ie_result_type_java",
333333
:out => "java/client/src/org/openqa/selenium/ie/IeReturnTypes.java")
334334

335335

336-
task :javadocs => [:common, :firefox, :ie, :remote, :support, :chrome, :selenium] do
336+
task :javadocs => [:'repack-jetty', :common, :firefox, :ie, :remote, :support, :chrome, :selenium] do
337337
mkdir_p "build/javadoc"
338338
sourcepath = ""
339339
classpath = '.'

java/client/src/org/openqa/selenium/safari/SafariOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ public static SafariOptions fromCapabilities(Capabilities capabilities)
102102
// Setters
103103

104104
/**
105-
* Set the port the {@link SafariDriverServer} should be started on. Defaults to 0, in which case
105+
* Set the port the {@link SafariDriverService} should be started on. Defaults to 0, in which case
106106
* the server selects a free port.
107107
*
108-
* @param port The port the {@link SafariDriverServer} should be started on,
108+
* @param port The port the {@link SafariDriverService} should be started on,
109109
* or 0 if the server should select a free port.
110110
*/
111111
public void setPort(int port) {
@@ -140,7 +140,7 @@ public void setUseTechnologyPreview(boolean useTechnologyPreview) {
140140
// Getters
141141

142142
/**
143-
* @return The port the {@link SafariDriverServer} should be started on.
143+
* @return The port the {@link SafariDriverService} should be started on.
144144
* If 0, the server should select a free port.
145145
* @see #setPort(int)
146146
*/

java/client/src/org/openqa/selenium/support/ui/FluentWait.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
* Sample usage: <pre>
5151
* // Waiting 30 seconds for an element to be present on the page, checking
5252
* // for its presence once every 5 seconds.
53-
* Wait&lt;WebDriver> wait = new FluentWait&lt;WebDriver>(driver)
53+
* Wait&lt;WebDriver&gt; wait = new FluentWait&lt;WebDriver&gt;(driver)
5454
* .withTimeout(30, SECONDS)
5555
* .pollingEvery(5, SECONDS)
5656
* .ignoring(NoSuchElementException.class);
5757
*
58-
* WebElement foo = wait.until(new Function&lt;WebDriver, WebElement>() {
58+
* WebElement foo = wait.until(new Function&lt;WebDriver, WebElement&gt;() {
5959
* public WebElement apply(WebDriver driver) {
6060
* return driver.findElement(By.id("foo"));
6161
* }

0 commit comments

Comments
 (0)