You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2005/12/14 23:37:27 UTC

svn commit: r356892 - /incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java

Author: bommel
Date: Wed Dec 14 14:37:22 2005
New Revision: 356892

URL: http://svn.apache.org/viewcvs?rev=356892&view=rev
Log:
try fix MYFACES-946

Modified:
    incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java

Modified: incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java?rev=356892&r1=356891&r2=356892&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java (original)
+++ incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java Wed Dec 14 14:37:22 2005
@@ -33,13 +33,5 @@
     return UIInput.COMPONENT_TYPE;
   }
 
-  public int doEndTag() throws JspException {
-    UIComponent component = getComponentInstance();
-    // TODO remove this
-    if (component.getFacet(FACET_LAYOUT) == null) {
-      UIComponent layout = ComponentUtil.createLabeledInputLayoutComponent();
-      component.getFacets().put(FACET_LAYOUT, layout);
-    }
-    return super.doEndTag();
-  }
+ 
 }