You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2006/11/22 09:10:48 UTC

svn commit: r478078 - /myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/renderkit/html/util/DummyFormUtils.java

Author: matzew
Date: Wed Nov 22 00:10:48 2006
New Revision: 478078

URL: http://svn.apache.org/viewvc?view=rev&rev=478078
Log:
using RendererUtils.findNestingForm

Modified:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/renderkit/html/util/DummyFormUtils.java

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/renderkit/html/util/DummyFormUtils.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/renderkit/html/util/DummyFormUtils.java?view=diff&rev=478078&r1=478077&r2=478078
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/renderkit/html/util/DummyFormUtils.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/renderkit/html/util/DummyFormUtils.java Wed Nov 22 00:10:48 2006
@@ -30,11 +30,11 @@
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
+import org.apache.myfaces.shared_tomahawk.renderkit.RendererUtils;
 import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
 import org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlRendererUtils;
 import org.apache.myfaces.shared_tomahawk.renderkit.html.util.JavascriptUtils;
 import org.apache.myfaces.shared_tomahawk.renderkit.html.util.FormInfo;
-import org.apache.myfaces.shared_tomahawk.util._ComponentUtils;
 
 /**
  * Many JSF components can be used without an enclosing h:form. In this
@@ -170,7 +170,7 @@
     }
 
     public static FormInfo findNestingForm(UIComponent uiComponent, FacesContext facesContext) {
-        FormInfo formInfo = _ComponentUtils.findNestingForm(uiComponent, facesContext);
+        FormInfo formInfo = RendererUtils.findNestingForm(uiComponent, facesContext);
         if (formInfo != null) {
             return formInfo;
         }