Skip to content

Commit

Permalink
Reverting making .NET ICommandExecutor extend IDisposable
Browse files Browse the repository at this point in the history
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 SeleniumHQ#5768.
  • Loading branch information
jimevans committed Apr 12, 2018
1 parent c4867d4 commit 217c436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Remote/ICommandExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace OpenQA.Selenium.Remote
/// <summary>
/// Provides a way to send commands to the remote server
/// </summary>
public interface ICommandExecutor : IDisposable
public interface ICommandExecutor
{
/// <summary>
/// Gets the repository of objects containin information about commands.
Expand Down

0 comments on commit 217c436

Please sign in to comment.