Skip to content

Commit 445ba70

Browse files
authoredFeb 6, 2025··
[dotnet] Annotate nullability on Log protocol (#15239)
1 parent ef67b61 commit 445ba70

File tree

5 files changed

+37
-19
lines changed

5 files changed

+37
-19
lines changed
 

‎dotnet/src/webdriver/DevTools/Log.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
using System;
2121
using System.Threading.Tasks;
2222

23+
#nullable enable
24+
2325
namespace OpenQA.Selenium.DevTools
2426
{
2527
/// <summary>
@@ -30,7 +32,7 @@ public abstract class Log
3032
/// <summary>
3133
/// Occurs when an entry is added to the browser's log.
3234
/// </summary>
33-
public event EventHandler<EntryAddedEventArgs> EntryAdded;
35+
public event EventHandler<EntryAddedEventArgs>? EntryAdded;
3436

3537
/// <summary>
3638
/// Asynchronously enables manipulation of the browser's log.

‎dotnet/src/webdriver/DevTools/v130/V130Log.cs

+9-5
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,28 @@
1818
// </copyright>
1919

2020
using OpenQA.Selenium.DevTools.V130.Log;
21+
using System;
2122
using System.Threading.Tasks;
2223

24+
#nullable enable
25+
2326
namespace OpenQA.Selenium.DevTools.V130
2427
{
2528
/// <summary>
2629
/// Class containing the browser's log as referenced by version 130 of the DevTools Protocol.
2730
/// </summary>
2831
public class V130Log : DevTools.Log
2932
{
30-
private LogAdapter adapter;
33+
private readonly LogAdapter adapter;
3134

3235
/// <summary>
3336
/// Initializes a new instance of the <see cref="V130Log"/> class.
3437
/// </summary>
3538
/// <param name="adapter">The adapter for the Log domain.</param>
39+
/// <exception cref="ArgumentNullException">If <paramref name="adapter"/> is <see langword="null"/>.</exception>
3640
public V130Log(LogAdapter adapter)
3741
{
38-
this.adapter = adapter;
42+
this.adapter = adapter ?? throw new ArgumentNullException(nameof(adapter));
3943
this.adapter.EntryAdded += OnAdapterEntryAdded;
4044
}
4145

@@ -66,14 +70,14 @@ public override async Task Clear()
6670
await adapter.Clear().ConfigureAwait(false);
6771
}
6872

69-
private void OnAdapterEntryAdded(object sender, Log.EntryAddedEventArgs e)
73+
private void OnAdapterEntryAdded(object? sender, Log.EntryAddedEventArgs e)
7074
{
7175
var entry = new LogEntry(
7276
kind: e.Entry.Source.ToString(),
7377
message: e.Entry.Text
7478
);
75-
EntryAddedEventArgs propagated = new EntryAddedEventArgs(entry);
76-
this.OnEntryAdded(propagated);
79+
80+
this.OnEntryAdded(new EntryAddedEventArgs(entry));
7781
}
7882
}
7983
}

‎dotnet/src/webdriver/DevTools/v131/V131Log.cs

+9-5
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,28 @@
1818
// </copyright>
1919

2020
using OpenQA.Selenium.DevTools.V131.Log;
21+
using System;
2122
using System.Threading.Tasks;
2223

24+
#nullable enable
25+
2326
namespace OpenQA.Selenium.DevTools.V131
2427
{
2528
/// <summary>
2629
/// Class containing the browser's log as referenced by version 131 of the DevTools Protocol.
2730
/// </summary>
2831
public class V131Log : DevTools.Log
2932
{
30-
private LogAdapter adapter;
33+
private readonly LogAdapter adapter;
3134

3235
/// <summary>
3336
/// Initializes a new instance of the <see cref="V131Log"/> class.
3437
/// </summary>
3538
/// <param name="adapter">The adapter for the Log domain.</param>
39+
/// <exception cref="ArgumentNullException">If <paramref name="adapter"/> is <see langword="null"/>.</exception>
3640
public V131Log(LogAdapter adapter)
3741
{
38-
this.adapter = adapter;
42+
this.adapter = adapter ?? throw new ArgumentNullException(nameof(adapter));
3943
this.adapter.EntryAdded += OnAdapterEntryAdded;
4044
}
4145

@@ -66,14 +70,14 @@ public override async Task Clear()
6670
await adapter.Clear().ConfigureAwait(false);
6771
}
6872

69-
private void OnAdapterEntryAdded(object sender, Log.EntryAddedEventArgs e)
73+
private void OnAdapterEntryAdded(object? sender, Log.EntryAddedEventArgs e)
7074
{
7175
var entry = new LogEntry(
7276
kind: e.Entry.Source.ToString(),
7377
message: e.Entry.Text
7478
);
75-
EntryAddedEventArgs propagated = new EntryAddedEventArgs(entry);
76-
this.OnEntryAdded(propagated);
79+
80+
this.OnEntryAdded(new EntryAddedEventArgs(entry));
7781
}
7882
}
7983
}

‎dotnet/src/webdriver/DevTools/v132/V132Log.cs

+8-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@
1818
// </copyright>
1919

2020
using OpenQA.Selenium.DevTools.V132.Log;
21+
using System;
2122
using System.Threading.Tasks;
2223

24+
#nullable enable
25+
2326
namespace OpenQA.Selenium.DevTools.V132
2427
{
2528
/// <summary>
@@ -33,9 +36,10 @@ public class V132Log : DevTools.Log
3336
/// Initializes a new instance of the <see cref="V132Log"/> class.
3437
/// </summary>
3538
/// <param name="adapter">The adapter for the Log domain.</param>
39+
/// <exception cref="ArgumentNullException">If <paramref name="adapter"/> is <see langword="null"/>.</exception>
3640
public V132Log(LogAdapter adapter)
3741
{
38-
this.adapter = adapter;
42+
this.adapter = adapter ?? throw new ArgumentNullException(nameof(adapter));
3943
this.adapter.EntryAdded += OnAdapterEntryAdded;
4044
}
4145

@@ -66,14 +70,14 @@ public override async Task Clear()
6670
await adapter.Clear().ConfigureAwait(false);
6771
}
6872

69-
private void OnAdapterEntryAdded(object sender, Log.EntryAddedEventArgs e)
73+
private void OnAdapterEntryAdded(object? sender, Log.EntryAddedEventArgs e)
7074
{
7175
var entry = new LogEntry(
7276
kind: e.Entry.Source.ToString(),
7377
message: e.Entry.Text
7478
);
75-
EntryAddedEventArgs propagated = new EntryAddedEventArgs(entry);
76-
this.OnEntryAdded(propagated);
79+
80+
this.OnEntryAdded(new EntryAddedEventArgs(entry));
7781
}
7882
}
7983
}

‎dotnet/src/webdriver/DevTools/v85/V85Log.cs

+8-4
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,25 @@
1818
// </copyright>
1919

2020
using OpenQA.Selenium.DevTools.V85.Log;
21+
using System;
2122
using System.Threading.Tasks;
2223

24+
#nullable enable
25+
2326
namespace OpenQA.Selenium.DevTools.V85
2427
{
2528
/// <summary>
2629
/// Class containing the browser's log as referenced by version 86 of the DevTools Protocol.
2730
/// </summary>
2831
public class V85Log : DevTools.Log
2932
{
30-
private LogAdapter adapter;
33+
private readonly LogAdapter adapter;
3134

3235
/// <summary>
3336
/// Initializes a new instance of the <see cref="V85Log"/> class.
3437
/// </summary>
3538
/// <param name="adapter">The adapter for the Log domain.</param>
39+
/// <exception cref="ArgumentNullException">If <paramref name="adapter"/> is <see langword="null"/>.</exception>
3640
public V85Log(LogAdapter adapter)
3741
{
3842
this.adapter = adapter;
@@ -66,14 +70,14 @@ public override async Task Clear()
6670
await adapter.Clear().ConfigureAwait(false);
6771
}
6872

69-
private void OnAdapterEntryAdded(object sender, Log.EntryAddedEventArgs e)
73+
private void OnAdapterEntryAdded(object? sender, Log.EntryAddedEventArgs e)
7074
{
7175
var entry = new LogEntry(
7276
kind: e.Entry.Source.ToString(),
7377
message: e.Entry.Text
7478
);
75-
EntryAddedEventArgs propagated = new EntryAddedEventArgs(entry);
76-
this.OnEntryAdded(propagated);
79+
80+
this.OnEntryAdded(new EntryAddedEventArgs(entry));
7781
}
7882
}
7983
}

0 commit comments

Comments
 (0)
Please sign in to comment.