File tree 2 files changed +2
-2
lines changed
java/client/src/org/openqa/selenium/remote/service
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 47
47
public class DriverCommandExecutor extends HttpCommandExecutor implements Closeable {
48
48
49
49
private final DriverService service ;
50
- private final ExecutorService executorService = Executors .newFixedThreadPool (2 , r -> {
50
+ private static final ExecutorService executorService = Executors .newFixedThreadPool (2 , r -> {
51
51
Thread thread = new Thread (r );
52
52
thread .setName ("Driver Command Executor" );
53
53
thread .setDaemon (true );
Original file line number Diff line number Diff line change 60
60
*/
61
61
public class DriverService implements Closeable {
62
62
protected static final Duration DEFAULT_TIMEOUT = Duration .ofSeconds (20 );
63
- private final ExecutorService executorService = Executors .newFixedThreadPool (2 , r -> {
63
+ private static final ExecutorService executorService = Executors .newFixedThreadPool (2 , r -> {
64
64
Thread thread = new Thread (r );
65
65
thread .setName ("Driver Service Executor" );
66
66
thread .setDaemon (true );
You can’t perform that action at this time.
0 commit comments