Fix compilation error after rebase

This commit is contained in:
Chris Vest 2021-04-08 21:10:17 +02:00
parent 4ed2c59e39
commit 99efb7dab9

View File

@ -38,11 +38,6 @@ public class UnsafeMemoryManager implements MemoryManager {
return offheap;
}
@Override
public Buffer allocateConfined(AllocatorControl allocatorControl, long size, Drop<Buffer> drop, Cleaner cleaner) {
return allocateShared(allocatorControl, size, drop, cleaner);
}
@Override
public Buffer allocateShared(AllocatorControl allocatorControl, long size, Drop<Buffer> drop, Cleaner cleaner) {
final Object base;