Skip to content

Commit 46d425d

Browse files
committed
java: Deleting a deprecated class
1 parent 9160eab commit 46d425d

File tree

4 files changed

+0
-77
lines changed

4 files changed

+0
-77
lines changed

Diff for: java/client/src/org/openqa/selenium/remote/BUCK

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ java_library(name = 'remote',
4242
'ExecuteMethod.java',
4343
'FileDetector.java',
4444
'HttpCommandExecutor.java',
45-
'HttpVerb.java',
4645
'JsonException.java',
4746
'JsonToBeanConverter.java',
4847
'LocalFileDetector.java',

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

-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,6 @@ public class CommandInfo {
2323
private final String url;
2424
private final HttpMethod method;
2525

26-
/**
27-
* @deprecated replaced by org.openqa.selenium.remote.CommandInfo(String, HttpMethod).
28-
*/
29-
@Deprecated
30-
public CommandInfo(String url, HttpVerb verb) {
31-
this(url, verb.toHttpMethod());
32-
}
33-
3426
public CommandInfo(String url, HttpMethod method) {
3527
this.url = url;
3628
this.method = method;

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

-67
This file was deleted.

Diff for: java/client/src/org/openqa/selenium/remote/build.desc

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ java_library(name = "remote",
7575
"ExecuteMethod.java",
7676
"FileDetector.java",
7777
"HttpCommandExecutor.java",
78-
"HttpVerb.java",
7978
"LocalFileDetector.java",
8079
"RemoteActionChainExecutor.java",
8180
"RemoteExecuteMethod.java",

0 commit comments

Comments
 (0)