Skip to content

Commit

Permalink
Reinstating ICommandExecutor descending from IDisposable in .NET
Browse files Browse the repository at this point in the history
Now that the Appium project has implemented the methods required by an
implementation of IDisposable, this change can be made upstream in the
Selenium project. As this change has been rolled back once before to
accommodate downstream projects, it will be incumbent upon them to update
their libraries now, as it will not be rolled back again. In the case of
Appium, this is merely awaiting a binary release; other downstream
projects will be responsible for managing their own code changes and
release schedule.
  • Loading branch information
jimevans committed Jun 23, 2018
1 parent db1e959 commit d31bfd3
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
public interface ICommandExecutor : IDisposable
{
/// <summary>
/// Gets the repository of objects containin information about commands.
Expand Down

0 comments on commit d31bfd3

Please sign in to comment.