From e581ea0e1f65101a7d4baf99d18fa43e1aa20b01 Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Wed, 9 Feb 2011 22:19:22 +0100 Subject: - 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 --- src/java/com/jogamp/common/nio/Int64BufferSE.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/java/com/jogamp/common/nio/Int64BufferSE.java') 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(); } -- cgit v1.2.3