Skip to content

Commit 217c436

Browse files
committed
Reverting making .NET ICommandExecutor extend IDisposable
This change will reappear at some point. Downstream projects will need to implement a `public void Dispose()` method on any classes that implement ICommandExecutor to prevent breaking when this interface change is added again. Fixes issue #5768.
1 parent c4867d4 commit 217c436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/Remote/ICommandExecutor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace OpenQA.Selenium.Remote
2323
/// <summary>
2424
/// Provides a way to send commands to the remote server
2525
/// </summary>
26-
public interface ICommandExecutor : IDisposable
26+
public interface ICommandExecutor
2727
{
2828
/// <summary>
2929
/// Gets the repository of objects containin information about commands.

0 commit comments

Comments
 (0)