scolebourne    2003/08/31 05:57:42

  Modified:    collections/src/java/org/apache/commons/collections/iterators
                        ProxyListIterator.java ProxyIterator.java
  Log:
  Javadoc spelling mistakes
  bug 22843, from Janek Bogucki
  
  Revision  Changes    Path
  1.3       +11 -11    
jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ProxyListIterator.java
  
  Index: ProxyListIterator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ProxyListIterator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ProxyListIterator.java    15 Jan 2003 21:49:14 -0000      1.2
  +++ ProxyListIterator.java    31 Aug 2003 12:57:42 -0000      1.3
  @@ -103,7 +103,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#add(Object)} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public void add(Object o) {
           getListIterator().add(o);
  @@ -112,7 +112,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#hasNext()} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public boolean hasNext() {
           return getListIterator().hasNext();
  @@ -121,7 +121,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#hasPrevious()} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public boolean hasPrevious() {
           return getListIterator().hasPrevious();
  @@ -130,7 +130,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#next()} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public Object next() {
           return getListIterator().next();
  @@ -139,7 +139,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#nextIndex()} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public int nextIndex() {
           return getListIterator().nextIndex();
  @@ -148,7 +148,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#previous()} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public Object previous() {
           return getListIterator().previous();
  @@ -157,7 +157,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#previousIndex()} 
method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public int previousIndex() {
           return getListIterator().previousIndex();
  @@ -166,7 +166,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#remove()} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public void remove() {
           getListIterator().remove();
  @@ -175,7 +175,7 @@
       /**
        *  Invokes the underlying [EMAIL PROTECTED] ListIterator#set(Object)} method.
        *
  -     *  @throws NullPointerException  if the underyling iterator is null
  +     *  @throws NullPointerException  if the underlying iterator is null
        */
       public void set(Object o) {
           getListIterator().set(o);
  
  
  
  1.3       +3 -3      
jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ProxyIterator.java
  
  Index: ProxyIterator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ProxyIterator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ProxyIterator.java        15 Jan 2003 21:49:14 -0000      1.2
  +++ ProxyIterator.java        31 Aug 2003 12:57:42 -0000      1.3
  @@ -88,7 +88,7 @@
        * Constructs a new <Code>ProxyIterator</Code> that will use the
        * given iterator.
        *
  -     * @param iterator  the underyling iterator
  +     * @param iterator  the underlying iterator
        */
       public ProxyIterator(Iterator iterator) {
           super();
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to