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 ca5da11 commit c22f3ceCopy full SHA for c22f3ce
SwiftKitCore/src/main/java/org/swift/swiftkit/core/primitives/UnsignedBytes.java
@@ -333,7 +333,7 @@ enum UnsafeComparator implements Comparator<byte[]> {
333
// a 64-bit JVM with an 8-byte aligned field offset.
334
if (!(Objects.equals(System.getProperty("sun.arch.data.model"), "64")
335
&& (BYTE_ARRAY_BASE_OFFSET % 8) == 0
336
- // sanity check - this should never fail
+ // this should never fail
337
&& theUnsafe.arrayIndexScale(byte[].class) == 1)) {
338
throw new Error(); // force fallback to PureJavaComparator
339
}
0 commit comments