Skip to content

Commit b4e3ee3

Browse files
committed
[dotnet] Fix compilation warning in IHasDownloads file
1 parent 36585d1 commit b4e3ee3

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

dotnet/src/webdriver/IHasDownloads.cs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="IHasSessionId.cs" company="WebDriver Committers">
1+
// <copyright file="IHasDownloads.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information
@@ -16,12 +16,10 @@
1616
// limitations under the License.
1717
// </copyright>
1818

19+
using System.Collections.Generic;
20+
1921
namespace OpenQA.Selenium
2022
{
21-
using System.Collections.Generic;
22-
23-
using System.Collections.Generic;
24-
2523
/// <summary>
2624
/// Interface indicating the driver can handle downloading remote files.
2725
/// </summary>
@@ -44,4 +42,5 @@ public interface IHasDownloads
4442
/// Deletes the downloadable files.
4543
/// </summary>
4644
void DeleteDownloadableFiles();
47-
}}
45+
}
46+
}

0 commit comments

Comments
 (0)