Author: jrthomerson
Date: Fri Aug 13 20:50:46 2010
New Revision: 985357

URL: http://svn.apache.org/viewvc?rev=985357&view=rev
Log:
fix typo

Modified:
    
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/tester/FormTester.java

Modified: 
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/tester/FormTester.java
URL: 
http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/tester/FormTester.java?rev=985357&r1=985356&r2=985357&view=diff
==============================================================================
--- 
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/tester/FormTester.java
 (original)
+++ 
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/tester/FormTester.java
 Fri Aug 13 20:50:46 2010
@@ -382,7 +382,8 @@ public class FormTester
                        @Override
                        public void onFormComponent(final FormComponent 
formComponent)
                        {
-                               // do nothing for invisible or disabled 
component -- the browser would not send any parameter
+                               // do nothing for invisible or disabled 
component -- the browser would not send any
+                               // parameter
                                // for a disabled component
                                if (!(formComponent.isVisibleInHierarchy() && 
formComponent.isEnabledInHierarchy()))
                                {
@@ -776,7 +777,7 @@ public class FormTester
                if (closed)
                {
                        throw new IllegalStateException("'" + path +
-                               "' already sumbitted. Note that FormTester " + 
"is allowed to submit only once");
+                               "' already submitted. Note that FormTester " + 
"is allowed to submit only once");
                }
        }
 


Reply via email to