Skip to content

Commit 86ec568

Browse files
committed
remove unused interal ctor from Response
1 parent 63c2478 commit 86ec568

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

dotnet/src/webdriver/Response.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@ public Response(SessionId sessionId)
5656
}
5757
}
5858

59-
internal Response(SessionId sessionId, WebDriverResult status, object value)
60-
{
61-
this.SessionId = sessionId?.ToString();
62-
this.Status = status;
63-
this.Value = value;
64-
}
65-
6659
private Response(Dictionary<string, object> rawResponse)
6760
{
6861
if (rawResponse.ContainsKey("sessionId"))

0 commit comments

Comments
 (0)