Skip to content

Commit

Permalink
Undo moving Wait to webdriven, but still keeping it deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 30, 2014
1 parent ecfbecb commit 279f3c4
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 126 deletions.
1 change: 1 addition & 0 deletions java/client/src/com/thoughtworks/selenium/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ java_library(name = 'api',
'CommandProcessor.java',
'Selenium.java',
'SeleniumException.java',
'Wait.java',
],
visibility = ['PUBLIC'],
)
Expand Down
2 changes: 1 addition & 1 deletion java/client/src/com/thoughtworks/selenium/Wait.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*
* @author Dan Fabulich
*
* @deprecated Moved to com.thoughtworks.selenium.webdriven
* @deprecated The RC interface will be removed in Selenium 3.0. Please migrate to using WebDriver.
*/
@Deprecated
public abstract class Wait {
Expand Down
1 change: 1 addition & 0 deletions java/client/src/com/thoughtworks/selenium/build.desc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ java_library(name = "api",
"CommandProcessor.java",
"Selenium.java",
"SeleniumException.java",
"Wait.java",
])

java_library(name = "selenium",
Expand Down
1 change: 0 additions & 1 deletion java/client/src/com/thoughtworks/selenium/webdriven/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ java_library(name = 'emulation-api',
'ScriptMutator.java',
'SeleneseCommand.java',
'Timer.java',
'Wait.java',
'Windows.java',
],
deps = [
Expand Down
118 changes: 0 additions & 118 deletions java/client/src/com/thoughtworks/selenium/webdriven/Wait.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ java_library(name = "emulation-api",
"SeleniumMutator.java",
"Timer.java",
"VariableDeclaration.java",
"Wait.java",
"Windows.java",
],
deps = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package com.thoughtworks.selenium.webdriven.commands;

import com.thoughtworks.selenium.webdriven.Wait;
import com.thoughtworks.selenium.Wait;
import com.thoughtworks.selenium.webdriven.ScriptMutator;
import com.thoughtworks.selenium.webdriven.SeleneseCommand;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import com.google.common.base.Throwables;

import com.thoughtworks.selenium.webdriven.Wait;
import com.thoughtworks.selenium.Wait;
import com.thoughtworks.selenium.webdriven.SeleneseCommand;

import org.openqa.selenium.By;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.thoughtworks.selenium.webdriven.commands;

import com.thoughtworks.selenium.SeleniumException;
import com.thoughtworks.selenium.webdriven.Wait;
import com.thoughtworks.selenium.Wait;
import com.thoughtworks.selenium.webdriven.SeleneseCommand;
import com.thoughtworks.selenium.webdriven.Windows;

Expand Down
4 changes: 2 additions & 2 deletions java/client/test/com/thoughtworks/selenium/WaitTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import com.thoughtworks.selenium.webdriven.Wait;
import com.thoughtworks.selenium.webdriven.Wait.WaitTimedOutException;
import com.thoughtworks.selenium.Wait;
import com.thoughtworks.selenium.Wait.WaitTimedOutException;

import org.junit.Before;
import org.junit.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import static org.junit.Assert.fail;

import com.thoughtworks.selenium.Selenium;
import com.thoughtworks.selenium.Wait;

import org.junit.Before;
import org.junit.Test;
Expand Down

0 comments on commit 279f3c4

Please sign in to comment.