Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RenderMichael committed Jan 31, 2025
1 parent fc6e323 commit 73f78ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dotnet/src/webdriver/DevTools/DevToolsDomains.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class DevToolsDomains
// This is the list of known supported DevTools version implementation.
// When new versions are implemented for support, new types must be
// added to this dictionary.
private static int[] SupportedProtocolVersions =>
private static int[] SupportedDevToolsVersions =>
[
130,
132,
Expand Down Expand Up @@ -120,7 +120,7 @@ public static DevToolsDomains InitializeDomains(int protocolVersion, DevToolsSes
private static DevToolsDomains CreateFallbackDomain(int desiredVersion, DevToolsSession session, int versionRange)
{
// Get the list of supported versions and sort descending
List<int> supportedVersions = new List<int>(SupportedProtocolVersions);
List<int> supportedVersions = new List<int>(SupportedDevToolsVersions);
supportedVersions.Sort((first, second) => second.CompareTo(first));

foreach (int supportedVersion in supportedVersions)
Expand Down

0 comments on commit 73f78ee

Please sign in to comment.