summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util/Ringbuffer.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-07-09 22:29:32 +0200
committerSven Gothel <[email protected]>2014-07-09 22:29:32 +0200
commit629814e1b5dcbf28af7e5f7d8e872e8c5cc4805b (patch)
tree515d81110f4cf4dd3014f199f8ee66ad8fa98644 /src/java/com/jogamp/common/util/Ringbuffer.java
parent37f76d17cdf90a8dded8beba99651b19a8795c54 (diff)
Remove @deprecated methods
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();