Skip to content

Commit 84395df

Browse files
committed
Remove unusued fields from the Distributor
1 parent d990ace commit 84395df

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

java/server/src/org/openqa/selenium/grid/distributor/Distributor.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@
4141
import java.io.UncheckedIOException;
4242
import java.util.Map;
4343
import java.util.UUID;
44-
import java.util.concurrent.locks.ReadWriteLock;
45-
import java.util.concurrent.locks.ReentrantReadWriteLock;
4644
import java.util.function.Predicate;
47-
import java.util.logging.Logger;
4845

4946
import static org.openqa.selenium.remote.http.Route.delete;
5047
import static org.openqa.selenium.remote.http.Route.get;
@@ -88,11 +85,8 @@
8885
*/
8986
public abstract class Distributor implements HasReadyState, Predicate<HttpRequest>, Routable {
9087

91-
private static final Logger LOG = Logger.getLogger(Distributor.class.getName());
92-
9388
private final Route routes;
9489
protected final Tracer tracer;
95-
private final ReadWriteLock lock = new ReentrantReadWriteLock(true);
9690

9791
protected Distributor(
9892
Tracer tracer,

0 commit comments

Comments
 (0)