Skip to content

Commit 779e3b4

Browse files
committed
[java] Reordering modifiers to comply with the Java Language Specification
1 parent ebecf6c commit 779e3b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

java/client/src/org/openqa/selenium/remote/http/netty/NettyClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import java.util.function.BiFunction;
4242

4343
public class NettyClient implements HttpClient {
44-
private final static Timer TIMER;
44+
private static final Timer TIMER;
4545
static {
4646
ThreadFactory threadFactory = new DefaultThreadFactory("netty-client-timer", true);
4747
HashedWheelTimer timer = new HashedWheelTimer(

java/server/src/org/openqa/selenium/grid/web/GridUiRoute.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
public class GridUiRoute {
3232
private static final Logger LOG = Logger.getLogger("selenium");
3333

34-
private final static String GRID_RESOURCE = "javascript/grid-ui/build";
35-
private final static String GRID_RESOURCE_WITH_PREFIX = String.format("/%s", GRID_RESOURCE);
34+
private static final String GRID_RESOURCE = "javascript/grid-ui/build";
35+
private static final String GRID_RESOURCE_WITH_PREFIX = String.format("/%s", GRID_RESOURCE);
3636

3737
public static Routable getGridUi() {
3838
Routable ui;

0 commit comments

Comments
 (0)