Author: [email protected]
Date: Wed May 13 18:39:25 2009
New Revision: 5372

Modified:
     
trunk/user/test/com/google/gwt/emultest/java/util/AbstractSequentialListTest.java

Log:
Removed the unused overrides that javac was complaining about.

Patch by: amitmanjhi



Modified:  
trunk/user/test/com/google/gwt/emultest/java/util/AbstractSequentialListTest.java
==============================================================================
---  
trunk/user/test/com/google/gwt/emultest/java/util/AbstractSequentialListTest.java
        
(original)
+++  
trunk/user/test/com/google/gwt/emultest/java/util/AbstractSequentialListTest.java
        
Wed May 13 18:39:25 2009
@@ -39,23 +39,19 @@

          int position = index;

-        @Override
          public void add(E e) {
            internalList.add(position, e);
            position++;
          }

-        @Override
          public boolean hasNext() {
            return position < internalList.size();
          }

-        @Override
          public boolean hasPrevious() {
            return position > 0;
          }

-        @Override
          public E next() {
            E el = internalList.get(position);
            position++;
@@ -66,31 +62,26 @@
            return el;
          }

-        @Override
          public int nextIndex() {
            throw new UnsupportedOperationException(
                "nextIndex operation not supported");
          }

-        @Override
          public E previous() {
            throw new UnsupportedOperationException(
                "previous operation not supported");
          }

-        @Override
          public int previousIndex() {
            throw new UnsupportedOperationException(
                "previousIndex operation not supported");
          }

-        @Override
          public void remove() {
            throw new UnsupportedOperationException(
                "remove operation not supported");
          }

-        @Override
          public void set(E e) {
            throw new UnsupportedOperationException("set operation not  
supported");
          }

--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to