Skip to content

Commit

Permalink
[dotnet] Format dotnet code according to default config (#12879)
Browse files Browse the repository at this point in the history
Format dotnet code according to default config
  • Loading branch information
nvborisenko authored Oct 6, 2023
1 parent 97f4e23 commit c04e433
Show file tree
Hide file tree
Showing 60 changed files with 70 additions and 65 deletions.
2 changes: 1 addition & 1 deletion dotnet/src/support/Events/FindElementEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="FindElementEventArgs.cs" company="WebDriver Committers">
// <copyright file="FindElementEventArgs.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/Events/WebDriverExceptionEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="WebDriverExceptionEventArgs.cs" company="WebDriver Committers">
// <copyright file="WebDriverExceptionEventArgs.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/Events/WebDriverNavigationEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="WebDriverNavigationEventArgs.cs" company="WebDriver Committers">
// <copyright file="WebDriverNavigationEventArgs.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/Events/WebDriverScriptEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="WebDriverScriptEventArgs.cs" company="WebDriver Committers">
// <copyright file="WebDriverScriptEventArgs.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/Events/WebElementEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="WebElementEventArgs.cs" company="WebDriver Committers">
// <copyright file="WebElementEventArgs.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/Events/WebElementValueEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="WebElementValueEventArgs.cs" company="WebDriver Committers">
// <copyright file="WebElementValueEventArgs.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 Down
4 changes: 2 additions & 2 deletions dotnet/src/support/Extensions/WebDriverExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="WebDriverExtensions.cs" company="WebDriver Committers">
// <copyright file="WebDriverExtensions.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 Down Expand Up @@ -111,7 +111,7 @@ public static T ExecuteJavaScript<T>(this IWebDriver driver, string script, para
{
result = (T)Convert.ChangeType(value, type);
}
catch(Exception exp)
catch (Exception exp)
{
throw new WebDriverException("Script returned a value, but the result could not be cast to the desired type", exp);
}
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/support/UI/ILoadableComponent.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="ILoadableComponent.cs" company="WebDriver Committers">
// <copyright file="ILoadableComponent.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/UI/LoadableComponentException.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="LoadableComponentException.cs" company="WebDriver Committers">
// <copyright file="LoadableComponentException.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/UI/LoadableComponent{T}.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="LoadableComponent{T}.cs" company="WebDriver Committers">
// <copyright file="LoadableComponent{T}.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/support/UI/PopupWindowFinder.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="PopupWindowFinder.cs" company="WebDriver Committers">
// <copyright file="PopupWindowFinder.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 Down
3 changes: 2 additions & 1 deletion dotnet/src/support/UI/SelectElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,8 @@ private static string GetLongestSubstringWithoutSpace(string s)

private static void SetSelected(IWebElement option, bool select)
{
if (select && !option.Enabled) {
if (select && !option.Enabled)
{
throw new InvalidOperationException("You may not select a disabled option");
}

Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/support/UI/SlowLoadableComponent{T}.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace OpenQA.Selenium.Support.UI
/// <typeparam name="T">The type to be returned (normally the subclass' type)</typeparam>
public abstract class SlowLoadableComponent<T> : LoadableComponent<T>
where T : SlowLoadableComponent<T>
{
{
private readonly IClock clock;
private readonly TimeSpan timeout;
private TimeSpan sleepInterval = TimeSpan.FromMilliseconds(200);
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/CapabilityType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public static class CapabilityType
/// Capability name used to indicate whether the driver supports setting the browser window's size and position.
/// </summary>
public static readonly string SetWindowRect = "setWindowRect";

/// <summary>
/// Capability name used to get or set timeout values when creating a session.
/// </summary>
Expand Down
3 changes: 2 additions & 1 deletion dotnet/src/webdriver/Chromium/ChromiumDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ protected static IReadOnlyDictionary<string, CommandInfo> ChromiumCustomCommands
/// <returns></returns>
private static ICommandExecutor GenerateDriverServiceCommandExecutor(DriverService service, DriverOptions options, TimeSpan commandTimeout)
{
if (service.DriverServicePath == null) {
if (service.DriverServicePath == null)
{
string fullServicePath = DriverFinder.FullPath(options);
service.DriverServicePath = Path.GetDirectoryName(fullServicePath);
service.DriverServiceExecutableName = Path.GetFileName(fullServicePath);
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/CommandInfoRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public bool IsCommandNameDefined(string commandName)
/// <returns>The name of the command defined by the command info, or <see langword="null"/> if the command is not defined.</returns>
public string FindCommandName(CommandInfo commandInfo)
{
foreach(KeyValuePair<string, CommandInfo> pair in this.commandDictionary)
foreach (KeyValuePair<string, CommandInfo> pair in this.commandDictionary)
{
if (pair.Value == commandInfo)
{
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Cookie.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Cookie
private bool isHttpOnly;
private bool secure;
private DateTime? cookieExpiry;
private readonly string[] sameSiteValues = {"Strict", "Lax", "None"};
private readonly string[] sameSiteValues = { "Strict", "Lax", "None" };

/// <summary>
/// Initializes a new instance of the <see cref="Cookie"/> class with a specific name and value.
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/DefaultFileDetector.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="DefaultFileDetector.cs" company="WebDriver Committers">
// <copyright file="DefaultFileDetector.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/DevTools/DevToolsSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ private void MonitorMessageQueue()
{
this.ProcessMessage(message);
}
catch(Exception ex)
catch (Exception ex)
{
LogError("Unexpected error occured while processing message: {0}", ex);
}
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/DevTools/v115/V115Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public override async Task<ReadOnlyCollection<TargetInfo>> GetTargets(Object set
{
settings = new GetTargetsCommandSettings();
}
var response = await adapter.GetTargets((GetTargetsCommandSettings) settings).ConfigureAwait(false);
var response = await adapter.GetTargets((GetTargetsCommandSettings)settings).ConfigureAwait(false);
for (int i = 0; i < response.TargetInfos.Length; i++)
{
var targetInfo = response.TargetInfos[i];
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/DevTools/v116/V116Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public override async Task<ReadOnlyCollection<TargetInfo>> GetTargets(Object set
{
settings = new GetTargetsCommandSettings();
}
var response = await adapter.GetTargets((GetTargetsCommandSettings) settings).ConfigureAwait(false);
var response = await adapter.GetTargets((GetTargetsCommandSettings)settings).ConfigureAwait(false);
for (int i = 0; i < response.TargetInfos.Length; i++)
{
var targetInfo = response.TargetInfos[i];
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/DevTools/v117/V117Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public override async Task<ReadOnlyCollection<TargetInfo>> GetTargets(Object set
{
settings = new GetTargetsCommandSettings();
}
var response = await adapter.GetTargets((GetTargetsCommandSettings) settings).ConfigureAwait(false);
var response = await adapter.GetTargets((GetTargetsCommandSettings)settings).ConfigureAwait(false);
for (int i = 0; i < response.TargetInfos.Length; i++)
{
var targetInfo = response.TargetInfos[i];
Expand Down
3 changes: 2 additions & 1 deletion dotnet/src/webdriver/DriverFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public static string FullPath(DriverOptions options)
if (executablePath == null)
{
message = $"Unable to locate or obtain {options.BrowserName} driver";
} else if (!File.Exists(executablePath))
}
else if (!File.Exists(executablePath))
{
message = $"{options.BrowserName} driver located at {executablePath}, but invalid";
}
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Firefox/FirefoxDriverLogLevel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="FirefoxDriverLogLevel.cs" company="WebDriver Committers">
// <copyright file="FirefoxDriverLogLevel.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Firefox/Internal/IniFileReader.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IniFileReader.cs" company="WebDriver Committers">
// <copyright file="IniFileReader.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Firefox/Preferences.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="Preferences.cs" company="WebDriver Committers">
// <copyright file="Preferences.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/IAlert.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IAlert.cs" company="WebDriver Committers">
// <copyright file="IAlert.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/IAllowsFileDetection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IAllowsFileDetection.cs" company="WebDriver Committers">
// <copyright file="IAllowsFileDetection.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/ICookieJar.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="ICookieJar.cs" company="WebDriver Committers">
// <copyright file="ICookieJar.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 Down
3 changes: 2 additions & 1 deletion dotnet/src/webdriver/IE/InternetExplorerDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ public InternetExplorerDriver(InternetExplorerDriverService service, InternetExp
/// <returns></returns>
private static ICommandExecutor GenerateDriverServiceCommandExecutor(DriverService service, DriverOptions options, TimeSpan commandTimeout)
{
if (service.DriverServicePath == null) {
if (service.DriverServicePath == null)
{
string fullServicePath = DriverFinder.FullPath(options);
service.DriverServicePath = Path.GetDirectoryName(fullServicePath);
service.DriverServiceExecutableName = Path.GetFileName(fullServicePath);
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/IE/InternetExplorerDriverLogLevel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="InternetExplorerDriverLogLevel.cs" company="WebDriver Committers">
// <copyright file="InternetExplorerDriverLogLevel.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/IFileDetector.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IFileDetector.cs" company="WebDriver Committers">
// <copyright file="IFileDetector.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/IHasCapabilities.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IHasCapabilities.cs" company="WebDriver Committers">
// <copyright file="IHasCapabilities.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/ILogs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="ILogs.cs" company="WebDriver Committers">
// <copyright file="ILogs.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/IRotatable.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IRotatable.cs" company="WebDriver Committers">
// <copyright file="IRotatable.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/ITakesScreenshot.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="ITakesScreenshot.cs" company="WebDriver Committers">
// <copyright file="ITakesScreenshot.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Interactions/IAction.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="IAction.cs" company="WebDriver Committers">
// <copyright file="IAction.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Interactions/ICoordinates.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="ICoordinates.cs" company="WebDriver Committers">
// <copyright file="ICoordinates.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Interactions/Interaction.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="Interaction.cs" company="WebDriver Committers">
// <copyright file="Interaction.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Interactions/WheelInputDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private class WheelScrollInteraction : Interaction
private CoordinateOrigin origin = CoordinateOrigin.Viewport;

public WheelScrollInteraction(InputDevice sourceDevice, IWebElement target, CoordinateOrigin origin, int x, int y, int deltaX, int deltaY, TimeSpan duration)
:base(sourceDevice)
: base(sourceDevice)
{
if (target != null)
{
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Internal/PortUtilities.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="PortUtilities.cs" company="WebDriver Committers">
// <copyright file="PortUtilities.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 Down
4 changes: 2 additions & 2 deletions dotnet/src/webdriver/Internal/ReturnedCookie.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace OpenQA.Selenium.Internal
/// </summary>
public class ReturnedCookie : Cookie
{

/// <summary>
/// Initializes a new instance of the <see cref="ReturnedCookie"/> class with a specific name,
/// value, domain, path and expiration date.
Expand Down Expand Up @@ -64,7 +64,7 @@ public ReturnedCookie(string name, string value, string domain, string path, Dat
public ReturnedCookie(string name, string value, string domain, string path, DateTime? expiry, bool isSecure, bool isHttpOnly, string sameSite)
: base(name, value, domain, path, expiry, isSecure, isHttpOnly, sameSite)
{

}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/LogEntry.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="LogEntry.cs" company="WebDriver Committers">
// <copyright file="LogEntry.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/LogLevel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="LogLevel.cs" company="WebDriver Committers">
// <copyright file="LogLevel.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/LogType.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="LogType.cs" company="WebDriver Committers">
// <copyright file="LogType.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/NetworkRequestSentEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public NetworkRequestSentEventArgs(HttpRequestData requestData)
/// Gets the internal request ID of the network request.
/// </summary>
public string RequestId => requestId;

/// <summary>
/// Gets the URL of the network request.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/NoSuchFrameException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ protected NoSuchFrameException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
}
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/NoSuchShadowRootException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ protected NoSuchShadowRootException(SerializationInfo info, StreamingContext con
: base(info, context)
{
}
}
}
}
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Platform.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="Platform.cs" company="WebDriver Committers">
// <copyright file="Platform.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Remote/ICommandServer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="ICommandServer.cs" company="WebDriver Committers">
// <copyright file="ICommandServer.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 Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Remote/LocalFileDetector.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="LocalFileDetector.cs" company="WebDriver Committers">
// <copyright file="LocalFileDetector.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 Down
Loading

0 comments on commit c04e433

Please sign in to comment.