Skip to content

Commit fab401a

Browse files
committed
Fix merge issue
1 parent 08c879c commit fab401a

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

dotnet/src/webdriver/WebDriver.cs

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -551,38 +551,6 @@ internal ReadOnlyCollection<IWebElement> GetElementsFromResponse(Response respon
551551
return toReturn.AsReadOnly();
552552
}
553553

554-
/// <summary>
555-
/// Executes commands with the driver
556-
/// </summary>
557-
/// <param name="driverCommandToExecute">Command that needs executing</param>
558-
/// <param name="parameters">Parameters needed for the command</param>
559-
/// <returns>WebDriver Response</returns>
560-
/// <exception cref="ArgumentNullException">If <paramref name="driverCommandToExecute"/> is <see langword="null"/>.</exception>
561-
internal Response InternalExecute(string driverCommandToExecute, Dictionary<string,
562-
#nullable disable
563-
object
564-
#nullable enable
565-
>? parameters)
566-
{
567-
return Task.Run(() => this.InternalExecuteAsync(driverCommandToExecute, parameters)).GetAwaiter().GetResult();
568-
}
569-
570-
/// <summary>
571-
/// Executes commands with the driver asynchronously
572-
/// </summary>
573-
/// <param name="driverCommandToExecute">Command that needs executing</param>
574-
/// <param name="parameters">Parameters needed for the command</param>
575-
/// <returns>A task object representing the asynchronous operation</returns>
576-
/// <exception cref="ArgumentNullException">If <paramref name="driverCommandToExecute"/> is <see langword="null"/>.</exception>
577-
internal Task<Response> InternalExecuteAsync(string driverCommandToExecute, Dictionary<string,
578-
#nullable disable
579-
object
580-
#nullable enable
581-
>? parameters)
582-
{
583-
return this.ExecuteAsync(driverCommandToExecute, parameters);
584-
}
585-
586554
/// <summary>
587555
/// Executes a command with this driver.
588556
/// </summary>

0 commit comments

Comments
 (0)