Author: ivaynberg
Date: Tue Mar  3 05:50:05 2009
New Revision: 749537

URL: http://svn.apache.org/viewvc?rev=749537&view=rev
Log:
WICKET-2090

Modified:
    
wicket/trunk/wicket/src/main/java/org/apache/wicket/util/collections/ArrayListStack.java

Modified: 
wicket/trunk/wicket/src/main/java/org/apache/wicket/util/collections/ArrayListStack.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/util/collections/ArrayListStack.java?rev=749537&r1=749536&r2=749537&view=diff
==============================================================================
--- 
wicket/trunk/wicket/src/main/java/org/apache/wicket/util/collections/ArrayListStack.java
 (original)
+++ 
wicket/trunk/wicket/src/main/java/org/apache/wicket/util/collections/ArrayListStack.java
 Tue Mar  3 05:50:05 2009
@@ -28,7 +28,7 @@
  * @author Jonathan Locke
  * @param <T>
  */
-public final class ArrayListStack<T> extends ArrayList<T>
+public class ArrayListStack<T> extends ArrayList<T>
 {
        private static final long serialVersionUID = 1L;
 
@@ -119,8 +119,8 @@
         * Returns the 1-based position where an object is on this stack. If 
the object <tt>o</tt>
         * occurs as an item in this stack, this method returns the distance 
from the top of the stack
         * of the occurrence nearest the top of the stack; the topmost item on 
the stack is considered
-        * to be at distance <tt>1</tt>. The <tt>equals</tt> method is used to 
compare <tt>o</tt>
-        * to the items in this stack.
+        * to be at distance <tt>1</tt>. The <tt>equals</tt> method is used to 
compare <tt>o</tt> to the
+        * items in this stack.
         * 
         * @param o
         *            the desired object.


Reply via email to