Skip to content

Commit c081391

Browse files
committed
Remove nullable enable
1 parent d28a683 commit c081391

File tree

426 files changed

+0
-852
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

426 files changed

+0
-852
lines changed

dotnet/src/webdriver/Alert.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
using System;
2121
using System.Collections.Generic;
2222

23-
#nullable enable
24-
2523
namespace OpenQA.Selenium
2624
{
2725
/// <summary>

dotnet/src/webdriver/BiDi/BiDi.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
using OpenQA.Selenium.BiDi.Communication;
2323
using OpenQA.Selenium.BiDi.Communication.Transport;
2424

25-
#nullable enable
26-
2725
namespace OpenQA.Selenium.BiDi;
2826

2927
public class BiDi : IAsyncDisposable

dotnet/src/webdriver/BiDi/BiDiException.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
using System;
2121

22-
#nullable enable
23-
2422
namespace OpenQA.Selenium.BiDi;
2523

2624
public class BiDiException : Exception

dotnet/src/webdriver/BiDi/Communication/Broker.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
using System.Threading;
3131
using System.Threading.Tasks;
3232

33-
#nullable enable
34-
3533
namespace OpenQA.Selenium.BiDi.Communication;
3634

3735
public class Broker : IAsyncDisposable

dotnet/src/webdriver/BiDi/Communication/Command.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
// under the License.
1818
// </copyright>
1919

20-
#nullable enable
21-
2220
namespace OpenQA.Selenium.BiDi.Communication;
2321

2422
public abstract class Command

dotnet/src/webdriver/BiDi/Communication/CommandOptions.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
using System;
2121

22-
#nullable enable
23-
2422
namespace OpenQA.Selenium.BiDi.Communication;
2523

2624
public record CommandOptions

dotnet/src/webdriver/BiDi/Communication/EventHandler.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
using System.Collections.Generic;
2323
using System.Threading.Tasks;
2424

25-
#nullable enable
26-
2725
namespace OpenQA.Selenium.BiDi.Communication;
2826

2927
public abstract class EventHandler(string eventName, Type eventArgsType, IEnumerable<BrowsingContext>? contexts = null)

dotnet/src/webdriver/BiDi/Communication/Json/Converters/BrowserClientWindowConverter.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
using System.Text.Json;
2323
using System.Text.Json.Serialization;
2424

25-
#nullable enable
26-
2725
namespace OpenQA.Selenium.BiDi.Communication.Json.Converters;
2826

2927
internal class BrowserClientWindowConverter : JsonConverter<ClientWindow>

dotnet/src/webdriver/BiDi/Communication/Json/Converters/BrowserUserContextConverter.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
using System.Text.Json;
2323
using System.Text.Json.Serialization;
2424

25-
#nullable enable
26-
2725
namespace OpenQA.Selenium.BiDi.Communication.Json.Converters;
2826

2927
internal class BrowserUserContextConverter : JsonConverter<UserContext>

dotnet/src/webdriver/BiDi/Communication/Json/Converters/BrowsingContextConverter.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
using System.Text.Json;
2323
using System.Text.Json.Serialization;
2424

25-
#nullable enable
26-
2725
namespace OpenQA.Selenium.BiDi.Communication.Json.Converters;
2826

2927
internal class BrowsingContextConverter : JsonConverter<BrowsingContext>

0 commit comments

Comments
 (0)