From: Tim P <ti...@us...> - 2008-03-20 19:23:41
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/util In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31766/src/org/webmacro/util Modified Files: PrimitiveArrayIterator.java Log Message: Checkstyle: Redundant throws Index: PrimitiveArrayIterator.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/util/PrimitiveArrayIterator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PrimitiveArrayIterator.java 12 Jun 2003 00:47:48 -0000 1.3 --- PrimitiveArrayIterator.java 20 Mar 2008 19:23:35 -0000 1.4 *************** *** 29,33 **** /** ! * This provides an iterator interface to an array of primitives */ final public class PrimitiveArrayIterator implements Iterator --- 29,33 ---- /** ! * This provides an iterator interface to an array of primitives. */ final public class PrimitiveArrayIterator implements Iterator *************** *** 39,43 **** /** ! * Construct an iterator given an enumeration */ public PrimitiveArrayIterator (Object array) --- 39,43 ---- /** ! * Construct an iterator given an enumeration. */ public PrimitiveArrayIterator (Object array) *************** *** 52,56 **** /** ! * Return true if we have not yet reached the end of the enumeration */ final public boolean hasNext () --- 52,56 ---- /** ! * Return true if we have not yet reached the end of the enumeration. */ final public boolean hasNext () *************** *** 63,67 **** * reach the end of the enumeration. */ ! final public Object next () throws NoSuchElementException { if (pos < _size) --- 63,67 ---- * reach the end of the enumeration. */ ! final public Object next () { if (pos < _size) *************** *** 76,82 **** /** ! * Unsupported */ ! final public void remove () throws UnsupportedOperationException { throw new UnsupportedOperationException(); --- 76,82 ---- /** ! * Unsupported. */ ! final public void remove () { throw new UnsupportedOperationException(); |