Skip to content

Commit 29bf67e

Browse files
committedJun 4, 2015
Deleting deprecated code
1 parent 7b21467 commit 29bf67e

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed
 

Diff for: ‎java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java

-9
Original file line numberDiff line numberDiff line change
@@ -306,15 +306,6 @@ public void get(String url) {
306306
execute(DriverCommand.GET, ImmutableMap.of("url", url));
307307
}
308308

309-
/**
310-
* @deprecated The status command is not included in the WebDriver standard
311-
*/
312-
@Deprecated
313-
public RemoteStatus getRemoteStatus() {
314-
Response response = execute(DriverCommand.STATUS);
315-
return new RemoteStatus((Map<String, Object>) response.getValue());
316-
}
317-
318309
public String getTitle() {
319310
Response response = execute(DriverCommand.GET_TITLE);
320311
Object value = response.getValue();

0 commit comments

Comments
 (0)
Please sign in to comment.