You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ms...@apache.org on 2010/06/22 16:49:13 UTC

svn commit: r956911 - /myfaces/trinidad/trunk/trinidad-api/src/main/java-templates/org/apache/myfaces/trinidad/component/UIXColumnTemplate.java

Author: mstarets
Date: Tue Jun 22 14:49:12 2010
New Revision: 956911

URL: http://svn.apache.org/viewvc?rev=956911&view=rev
Log:
Reverted changes to override setPartialTarget() since they apparently cause test failures.

Modified:
    myfaces/trinidad/trunk/trinidad-api/src/main/java-templates/org/apache/myfaces/trinidad/component/UIXColumnTemplate.java

Modified: myfaces/trinidad/trunk/trinidad-api/src/main/java-templates/org/apache/myfaces/trinidad/component/UIXColumnTemplate.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-api/src/main/java-templates/org/apache/myfaces/trinidad/component/UIXColumnTemplate.java?rev=956911&r1=956910&r2=956911&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-api/src/main/java-templates/org/apache/myfaces/trinidad/component/UIXColumnTemplate.java (original)
+++ myfaces/trinidad/trunk/trinidad-api/src/main/java-templates/org/apache/myfaces/trinidad/component/UIXColumnTemplate.java Tue Jun 22 14:49:12 2010
@@ -20,8 +20,6 @@ package org.apache.myfaces.trinidad.comp
 
 import javax.faces.context.FacesContext;
 
-import org.apache.myfaces.trinidad.context.PartialPageContext;
-
 /**
  * Base class for UIXColumns.
  * The facets of this component are not processed during decode,validate and
@@ -73,16 +71,4 @@ public abstract class UIXColumnTemplate 
     // Process all the children of this component
     new ChildLoop.Update().runAlways(context, this);
   }
-  
-  /**
-   * When the column is being PPR-ed, we have to PPR the entire table
-   * Note that this will work for the nested columns too because the parent column's 
-   * setPartialTarget() will in turn delegate to the table
-   */
-  @Override
-  protected void setPartialTarget(FacesContext facesContext,
-    PartialPageContext partialContext)
-  {
-    UIXComponent.addPartialTarget(facesContext, partialContext, getParent());
-  }
 }