Skip to content

Commit 086533b

Browse files
committed
[java] Adding final modifier to a member that is supposed to be a constant
1 parent 15c856e commit 086533b

File tree

1 file changed

+1
-1
lines changed
  • java/server/src/org/openqa/selenium/grid/node

1 file changed

+1
-1
lines changed

java/server/src/org/openqa/selenium/grid/node/Node.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
public abstract class Node implements HasReadyState, Routable {
109109

110110
private static final Logger LOG = Logger.getLogger(Node.class.getName());
111-
private static BuildInfo INFO = new BuildInfo();
111+
private static final BuildInfo INFO = new BuildInfo();
112112
protected final Tracer tracer;
113113
private final NodeId id;
114114
private final URI uri;

0 commit comments

Comments
 (0)