Skip to content

Commit

Permalink
Fix compilation of UnsafeSorterSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed May 1, 2015
1 parent 9c6cf58 commit e267cee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class UnsafeSorterSuite {
private static String getStringFromDataPage(Object baseObject, long baseOffset) {
final int strLength = (int) PlatformDependent.UNSAFE.getLong(baseObject, baseOffset);
final byte[] strBytes = new byte[strLength];
PlatformDependent.UNSAFE.copyMemory(
PlatformDependent.copyMemory(
baseObject,
baseOffset + 8,
strBytes,
Expand Down

0 comments on commit e267cee

Please sign in to comment.