Skip to content

Commit 3b78cfe

Browse files
committed
Update Intercept.cs
1 parent 30e0e1a commit 3b78cfe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dotnet/src/webdriver/BiDi/Network/Intercept.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ internal Intercept(BiDi bidi, string id)
3636

3737
internal string Id { get; }
3838

39-
protected IList<Subscription> OnBeforeRequestSentSubscriptions { get; } = [];
40-
protected IList<Subscription> OnResponseStartedSubscriptions { get; } = [];
41-
protected IList<Subscription> OnAuthRequiredSubscriptions { get; } = [];
39+
IList<Subscription> OnBeforeRequestSentSubscriptions { get; } = [];
40+
IList<Subscription> OnResponseStartedSubscriptions { get; } = [];
41+
IList<Subscription> OnAuthRequiredSubscriptions { get; } = [];
4242

4343
public async Task RemoveAsync()
4444
{

0 commit comments

Comments
 (0)