From 5b545ee6ebf77c25286e8d50f2b581b1c559c081 Mon Sep 17 00:00:00 2001 From: Alex Popov Date: Fri, 15 Aug 2025 20:26:50 +0700 Subject: [PATCH] set protected modifier to props --- java/src/org/openqa/selenium/remote/HttpCommandExecutor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/src/org/openqa/selenium/remote/HttpCommandExecutor.java b/java/src/org/openqa/selenium/remote/HttpCommandExecutor.java index 1eb3283eae014..03c2e1747fec6 100644 --- a/java/src/org/openqa/selenium/remote/HttpCommandExecutor.java +++ b/java/src/org/openqa/selenium/remote/HttpCommandExecutor.java @@ -47,8 +47,8 @@ public class HttpCommandExecutor implements CommandExecutor, NeedsLocalLogs { private final URL remoteServer; public final HttpClient client; - private final HttpClient.Factory httpClientFactory; - private final Map additionalCommands; + protected final HttpClient.Factory httpClientFactory; + protected final Map additionalCommands; protected CommandCodec commandCodec; protected ResponseCodec responseCodec;