File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
api/all/src/main/java/io/opentelemetry/api/internal Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ public final class OtelEncodingUtils {
2121 private static final int NUM_ASCII_CHARACTERS = 128 ;
2222 private static final char [] ENCODING = buildEncodingArray ();
2323 private static final byte [] DECODING = buildDecodingArray ();
24+
2425 /**
25- * Stores whether the character at that index is a valid HEX character.
26- * We lazy init the array values to minimize impact during process startup esp. on mobile.
27- * A value of 0 means the character validity has not been determined yet.
28- * A value of 1 means the character is a valid HEX character.
29- * A value of -1 means the character is an invalid HEX character.
30- *
31- * @see #isValidBase16Character(char)
26+ * Stores whether the character at that index is a valid HEX character. We lazy init the array
27+ * values to minimize impact during process startup esp. on mobile. A value of 0 means the
28+ * character validity has not been determined yet. A value of 1 means the character is a valid HEX
29+ * character. A value of -1 means the character is an invalid HEX character.
30+ *
31+ * @see #isValidBase16Character(char)
3232 */
3333 private static final int [] VALID_HEX = new int [Character .MAX_VALUE ];
3434
You can’t perform that action at this time.
0 commit comments