Skip to content

Commit 73f78ee

Browse files
committed
rename variable
1 parent fc6e323 commit 73f78ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/webdriver/DevTools/DevToolsDomains.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public abstract class DevToolsDomains
3636
// This is the list of known supported DevTools version implementation.
3737
// When new versions are implemented for support, new types must be
3838
// added to this dictionary.
39-
private static int[] SupportedProtocolVersions =>
39+
private static int[] SupportedDevToolsVersions =>
4040
[
4141
130,
4242
132,
@@ -120,7 +120,7 @@ public static DevToolsDomains InitializeDomains(int protocolVersion, DevToolsSes
120120
private static DevToolsDomains CreateFallbackDomain(int desiredVersion, DevToolsSession session, int versionRange)
121121
{
122122
// Get the list of supported versions and sort descending
123-
List<int> supportedVersions = new List<int>(SupportedProtocolVersions);
123+
List<int> supportedVersions = new List<int>(SupportedDevToolsVersions);
124124
supportedVersions.Sort((first, second) => second.CompareTo(first));
125125

126126
foreach (int supportedVersion in supportedVersions)

0 commit comments

Comments
 (0)