Skip to content

Commit 275870d

Browse files
author
Bao-Long Nguyen-Trong
committed
Apply Spotless
1 parent b040377 commit 275870d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)