Skip to content

Commit f5ed4cf

Browse files
author
Bao-Long Nguyen-Trong
committed
1 parent f53315a commit f5ed4cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

api/all/src/main/java/io/opentelemetry/api/internal/OtelEncodingUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
package io.opentelemetry.api.internal;
77

88
import java.util.Arrays;
9+
import javax.annotation.Nullable;
910
import javax.annotation.concurrent.Immutable;
1011

1112
/**
@@ -22,7 +23,7 @@ public final class OtelEncodingUtils {
2223
private static final char[] ENCODING = buildEncodingArray();
2324
private static final byte[] DECODING = buildDecodingArray();
2425

25-
private static volatile boolean[] validHex = null;
26+
@Nullable private static volatile boolean[] validHex = null;
2627

2728
private static char[] buildEncodingArray() {
2829
char[] encoding = new char[512];

0 commit comments

Comments
 (0)