diff --git a/dotnet/src/webdriver/IHasDownloads.cs b/dotnet/src/webdriver/IHasDownloads.cs index a0b6e4bc481c3..19a2f9982dfb6 100644 --- a/dotnet/src/webdriver/IHasDownloads.cs +++ b/dotnet/src/webdriver/IHasDownloads.cs @@ -1,4 +1,4 @@ -// +// // 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 @@ -16,12 +16,10 @@ // limitations under the License. // +using System.Collections.Generic; + namespace OpenQA.Selenium { - using System.Collections.Generic; - - using System.Collections.Generic; - /// /// Interface indicating the driver can handle downloading remote files. /// @@ -44,4 +42,5 @@ public interface IHasDownloads /// Deletes the downloadable files. /// void DeleteDownloadableFiles(); - }} + } +}