Skip to content

Commit

Permalink
move and clarify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
samelamin committed Mar 29, 2017
1 parent 799effa commit bf7cc24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public final class Platform {
static {
boolean _unaligned;
if (arch.matches("^(ppc64le | ppc64)$")) {
// Since java.nio.Bits.unaligned() doesn't return true on ppc (See JDK-8165231), but ppc64 and ppc64le support it
_unaligned = true;
} else {
//Since java.nio.Bits.unaligned() doesn't return true on ppc (See JDK-8165231)
try {
Class<?> bitsClass =
Class.forName("java.nio.Bits", false, ClassLoader.getSystemClassLoader());
Expand Down

0 comments on commit bf7cc24

Please sign in to comment.