We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f53315a commit f5ed4cfCopy full SHA for f5ed4cf
api/all/src/main/java/io/opentelemetry/api/internal/OtelEncodingUtils.java
@@ -6,6 +6,7 @@
6
package io.opentelemetry.api.internal;
7
8
import java.util.Arrays;
9
+import javax.annotation.Nullable;
10
import javax.annotation.concurrent.Immutable;
11
12
/**
@@ -22,7 +23,7 @@ public final class OtelEncodingUtils {
22
23
private static final char[] ENCODING = buildEncodingArray();
24
private static final byte[] DECODING = buildDecodingArray();
25
- private static volatile boolean[] validHex = null;
26
+ @Nullable private static volatile boolean[] validHex = null;
27
28
private static char[] buildEncodingArray() {
29
char[] encoding = new char[512];
0 commit comments