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 2007/03/01 03:29:51 UTC

svn commit: r513110 - /incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/upload/FileUpload.java

Author: ivaynberg
Date: Wed Feb 28 18:29:50 2007
New Revision: 513110

URL: http://svn.apache.org/viewvc?view=rev&rev=513110
Log:
make constructor public so it can be accessed by components that perform file uploads and are declared in other packages

Modified:
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/upload/FileUpload.java

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/upload/FileUpload.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/upload/FileUpload.java?view=diff&rev=513110&r1=513109&r2=513110
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/upload/FileUpload.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/upload/FileUpload.java Wed Feb 28 18:29:50 2007
@@ -47,7 +47,7 @@
 	 * @param item
 	 *            The uploaded file item
 	 */
-	FileUpload(final FileItem item)
+	public FileUpload(final FileItem item)
 	{
 		this.item = item;
 	}