summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util/Ringbuffer.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/com/jogamp/common/util/Ringbuffer.java')
-rw-r--r--src/java/com/jogamp/common/util/Ringbuffer.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/java/com/jogamp/common/util/Ringbuffer.java b/src/java/com/jogamp/common/util/Ringbuffer.java
index 6c2507f..b05e803 100644
--- a/src/java/com/jogamp/common/util/Ringbuffer.java
+++ b/src/java/com/jogamp/common/util/Ringbuffer.java
@@ -51,18 +51,6 @@ public interface Ringbuffer<T> {
/** Debug functionality - Dumps the contents of the internal array. */
public void dump(PrintStream stream, String prefix);
- /**
- * Returns the internal array as-is, i.e. w/o a copy.
- * <p>
- * The layout and size of the internal array is implementation dependent.
- * </p>
- * <p>
- * Users shall not modify or rely on the returned array.
- * </p>
- * @deprecated This method should not be required
- */
- public T[] getInternalArray();
-
/** Returns the net capacity of this ring buffer. */
public int capacity();