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 ef322bf commit 413a28dCopy full SHA for 413a28d
msgpack-core/src/main/java/org/msgpack/core/buffer/MessageBuffer.java
@@ -36,7 +36,7 @@ public class MessageBuffer {
36
u = (Unsafe) field.get(null);
37
}
38
catch(NoSuchFieldException e) {
39
- // Workaround for Unsafe instance for Android
+ // Workaround for creating an Unsafe instance for Android OS
40
Constructor<Unsafe> unsafeConstructor = Unsafe.class.getDeclaredConstructor();
41
unsafeConstructor.setAccessible(true);
42
u = (Unsafe) unsafeConstructor.newInstance();
0 commit comments