Skip to content

Commit 331e06e

Browse files
committed
Make RAND_PROCESS_ID static final too
1 parent 4c260a8 commit 331e06e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/XGoogSpannerRequestId.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
@InternalApi
2626
public class XGoogSpannerRequestId {
2727
// 1. Generate the random process Id singleton.
28-
@VisibleForTesting static String RAND_PROCESS_ID = XGoogSpannerRequestId.generateRandProcessId();
28+
@VisibleForTesting
29+
static final String RAND_PROCESS_ID = XGoogSpannerRequestId.generateRandProcessId();
2930

3031
@VisibleForTesting
3132
static final long VERSION = 1; // The version of the specification being implemented.

0 commit comments

Comments
 (0)