Author: hlship
Date: Fri Feb 29 10:09:30 2008
New Revision: 632402

URL: http://svn.apache.org/viewvc?rev=632402&view=rev
Log:
TAPESTRY-1650: Add support for injecting (via Ajax) new content into an 
existing client-side form

Modified:
    
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry/corelib/components/Form.java

Modified: 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry/corelib/components/Form.java
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry/corelib/components/Form.java?rev=632402&r1=632401&r2=632402&view=diff
==============================================================================
--- 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry/corelib/components/Form.java
 (original)
+++ 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry/corelib/components/Form.java
 Fri Feb 29 10:09:30 2008
@@ -381,8 +381,6 @@
     {
         String[] values = _request.getParameters(FORM_DATA);
 
-        System.out.println("values = " + values);
-
         if (values == null) return;
 
         // Due to Ajax (FormInjector) there may be multiple values here, so 
handle each one individually.


Reply via email to