Skip to content

Commit

Permalink
[java] Deleting unused method in test base class
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 11, 2018
1 parent 01906b5 commit 6f789b2
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import org.openqa.selenium.environment.InProcessTestEnvironment;
import org.openqa.selenium.environment.TestEnvironment;
import org.openqa.selenium.environment.webserver.AppServer;
import org.openqa.selenium.WrapsDriver;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.openqa.selenium.support.ui.Wait;
import org.openqa.selenium.support.ui.WebDriverWait;
Expand All @@ -49,7 +48,7 @@
import java.util.stream.Stream;

@RunWith(SeleniumTestRunner.class)
public abstract class JUnit4TestBase implements WrapsDriver {
public abstract class JUnit4TestBase {

private static final Logger logger = Logger.getLogger(JUnit4TestBase.class.getName());

Expand Down Expand Up @@ -226,10 +225,6 @@ public void evaluate() throws Throwable {
}
}

public WebDriver getWrappedDriver() {
return storedDriver.get();
}

private void createDriver() {
driver = actuallyCreateDriver();
wait = new WebDriverWait(driver, 10);
Expand Down

0 comments on commit 6f789b2

Please sign in to comment.