Skip to content

Commit

Permalink
[dotnet] Fix compilation warning in IHasDownloads file
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed Nov 29, 2023
1 parent 36585d1 commit b4e3ee3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions dotnet/src/webdriver/IHasDownloads.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IHasSessionId.cs" company="WebDriver Committers">
// <copyright file="IHasDownloads.cs" company="WebDriver Committers">
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
Expand All @@ -16,12 +16,10 @@
// limitations under the License.
// </copyright>

using System.Collections.Generic;

namespace OpenQA.Selenium
{
using System.Collections.Generic;

using System.Collections.Generic;

/// <summary>
/// Interface indicating the driver can handle downloading remote files.
/// </summary>
Expand All @@ -44,4 +42,5 @@ public interface IHasDownloads
/// Deletes the downloadable files.
/// </summary>
void DeleteDownloadableFiles();
}}
}
}

0 comments on commit b4e3ee3

Please sign in to comment.