Skip to content

Commit 413a28d

Browse files
committed
msgpack#101: Fix comments
1 parent ef322bf commit 413a28d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack-core/src/main/java/org/msgpack/core/buffer/MessageBuffer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class MessageBuffer {
3636
u = (Unsafe) field.get(null);
3737
}
3838
catch(NoSuchFieldException e) {
39-
// Workaround for Unsafe instance for Android
39+
// Workaround for creating an Unsafe instance for Android OS
4040
Constructor<Unsafe> unsafeConstructor = Unsafe.class.getDeclaredConstructor();
4141
unsafeConstructor.setAccessible(true);
4242
u = (Unsafe) unsafeConstructor.newInstance();

0 commit comments

Comments
 (0)