You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2008/04/17 00:42:19 UTC

svn commit: r648890 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/form/DropDownChoice.java

Author: ivaynberg
Date: Wed Apr 16 15:42:16 2008
New Revision: 648890

URL: http://svn.apache.org/viewvc?rev=648890&view=rev
Log:
generics

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/form/DropDownChoice.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/form/DropDownChoice.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/form/DropDownChoice.java?rev=648890&r1=648889&r2=648890&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/form/DropDownChoice.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/form/DropDownChoice.java Wed Apr 16 15:42:16 2008
@@ -213,7 +213,7 @@
 	 *            The newly selected object of the backing model NOTE this is the same as you would
 	 *            get by calling getModelObject() if the new selection were current
 	 */
-	protected void onSelectionChanged(final Object newSelection)
+	protected void onSelectionChanged(final T newSelection)
 	{
 	}