You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by tr...@apache.org on 2008/05/22 11:04:29 UTC

svn commit: r659053 - /mina/branches/buffer/core/src/main/java/org/apache/mina/queue/IoQueue.java

Author: trustin
Date: Thu May 22 02:04:28 2008
New Revision: 659053

URL: http://svn.apache.org/viewvc?rev=659053&view=rev
Log:
Forgot to remove IoQueue.element(int) :)

Modified:
    mina/branches/buffer/core/src/main/java/org/apache/mina/queue/IoQueue.java

Modified: mina/branches/buffer/core/src/main/java/org/apache/mina/queue/IoQueue.java
URL: http://svn.apache.org/viewvc/mina/branches/buffer/core/src/main/java/org/apache/mina/queue/IoQueue.java?rev=659053&r1=659052&r2=659053&view=diff
==============================================================================
--- mina/branches/buffer/core/src/main/java/org/apache/mina/queue/IoQueue.java (original)
+++ mina/branches/buffer/core/src/main/java/org/apache/mina/queue/IoQueue.java Thu May 22 02:04:28 2008
@@ -19,7 +19,6 @@
  */
 package org.apache.mina.queue;
 
-import java.util.NoSuchElementException;
 import java.util.Queue;
 
 /**
@@ -45,13 +44,6 @@
 public interface IoQueue<E> extends Queue<E> {
 
     /**
-     * Returns the element at the specified position.
-     *
-     * @throws NoSuchElementException if a wrong index is specified
-     */
-    E element(int index);
-
-    /**
      * Adds the specified {@link IoQueueListener} to this queue.  Once added,
      * the listener will be notified whenever the state of this queue changes.
      */