We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edf8a86 commit c7b3632Copy full SHA for c7b3632
1 file changed
CodenameOne/src/com/codename1/util/Base64.java
@@ -437,7 +437,7 @@ public static int encodeNoNewline(byte[] in, byte[] out) {
437
}
438
439
// ---- SIMD constant tables (lazily initialized) ----
440
- private static volatile int[] simdEncConst;
+ private static int[] simdEncConst;
441
442
// Encode constant offsets (each sub-array is 64 ints)
443
private static final int ENC_K26 = 0; // threshold 26
@@ -454,7 +454,7 @@ public static int encodeNoNewline(byte[] in, byte[] out) {
454
private static final int ENC_M3F = 544;
455
private static final int ENC_CONST_SIZE = 560;
456
457
- private static volatile byte[] simdMask;
+ private static byte[] simdMask;
458
459
private static int[] getSimdEncConst(Simd simd) {
460
int[] c = simdEncConst;
0 commit comments