Extracted an Allocator interface for DirectByteBuffers
Signed-off-by: Kai Boernert <kai-boernert@visiongamestudios.de>
This commit is contained in:
parent
bc701c174b
commit
c71d87ed71
@ -55,6 +55,8 @@ import java.util.concurrent.ConcurrentHashMap;
|
|||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import org.mockito.internal.stubbing.answers.ThrowsException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>BufferUtils</code> is a helper class for generating nio buffers from
|
* <code>BufferUtils</code> is a helper class for generating nio buffers from
|
||||||
* jME data classes such as Vectors and ColorRGBA.
|
* jME data classes such as Vectors and ColorRGBA.
|
||||||
@ -75,7 +77,7 @@ public final class BufferUtils {
|
|||||||
static {
|
static {
|
||||||
try {
|
try {
|
||||||
allocator = new ReflectionAllocator();
|
allocator = new ReflectionAllocator();
|
||||||
} catch (InaccessibleObjectException t) {
|
} catch (Throwable t) {
|
||||||
t.printStackTrace();
|
t.printStackTrace();
|
||||||
System.err.println("Error using ReflectionAllocator");
|
System.err.println("Error using ReflectionAllocator");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user