Skip to content

Commit

Permalink
Merge pull request #237 from johnou/patch-1
Browse files Browse the repository at this point in the history
Add scale to exception message to help debug
  • Loading branch information
nitsanw committed Mar 6, 2019
2 parents 23432e5 + 81f135f commit 4782360
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -48,7 +48,7 @@ else if (8 == scale)
}
else
{
throw new IllegalStateException("Unknown pointer size");
throw new IllegalStateException("Unknown pointer size: " + scale);
}
REF_ARRAY_BASE = UnsafeAccess.UNSAFE.arrayBaseOffset(Object[].class);
}
Expand Down

0 comments on commit 4782360

Please sign in to comment.