aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/nio/Int64BufferSE.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2011-02-09 22:19:22 +0100
committerMichael Bien <[email protected]>2011-02-09 22:19:22 +0100
commite581ea0e1f65101a7d4baf99d18fa43e1aa20b01 (patch)
treed41b99d3ea1dd68e7054e63778aee5208980409d /src/java/com/jogamp/common/nio/Int64BufferSE.java
parente20879b9f124ecca8bc7467013e118d1b7f5782b (diff)
- removed CDC impl for com.jogamp.common.nio
- generified class hierarchy (casts no longer needed in client code) - @Override where needed and other minor changes
Diffstat (limited to 'src/java/com/jogamp/common/nio/Int64BufferSE.java')
-rwxr-xr-xsrc/java/com/jogamp/common/nio/Int64BufferSE.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/nio/Int64BufferSE.java b/src/java/com/jogamp/common/nio/Int64BufferSE.java
index fc262fd..f9ef026 100755
--- a/src/java/com/jogamp/common/nio/Int64BufferSE.java
+++ b/src/java/com/jogamp/common/nio/Int64BufferSE.java
@@ -58,7 +58,7 @@ final class Int64BufferSE extends Int64Buffer {
return pb.get(idx);
}
- public final AbstractLongBuffer put(int idx, long v) {
+ public final Int64BufferSE put(int idx, long v) {
if (0 > idx || idx >= capacity) {
throw new IndexOutOfBoundsException();
}