diff options
author | Michael Bien <[email protected]> | 2010-03-29 05:12:59 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-29 05:12:59 +0200 |
commit | ec4bdff4eabf5e1668b3e52d1c2708444fb76856 (patch) | |
tree | f633f135481520d76fe3f6cff0b82ccc57e7d6d7 | |
parent | 2d76c16b9384d383d3e6a9d7cb727f2591a39228 (diff) |
made conctructor protected.
-rwxr-xr-x | src/java/com/jogamp/gluegen/runtime/Buffers.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/runtime/Buffers.java b/src/java/com/jogamp/gluegen/runtime/Buffers.java index 843d8a6..3b4bc28 100755 --- a/src/java/com/jogamp/gluegen/runtime/Buffers.java +++ b/src/java/com/jogamp/gluegen/runtime/Buffers.java @@ -55,7 +55,7 @@ public class Buffers { public static final int SIZEOF_LONG = 8; public static final int SIZEOF_DOUBLE = 8; - private Buffers() {} + protected Buffers() {} /** * Allocates a new direct ByteBuffer with the specified number of |