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 2011/04/12 13:14:43 UTC

svn commit: r1091374 - /myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/component/Sorter.java

Author: bommel
Date: Tue Apr 12 11:14:43 2011
New Revision: 1091374

URL: http://svn.apache.org/viewvc?rev=1091374&view=rev
Log:
(TOBAGO-986) Sheet can only sort UIOutput - Nothing happend with UILinkCommand and UIButtonCommand
thanks to Sven Bunge

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/component/Sorter.java

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/component/Sorter.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/component/Sorter.java?rev=1091374&r1=1091373&r2=1091374&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/component/Sorter.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/component/Sorter.java Tue Apr 12 11:14:43 2011
@@ -213,7 +213,8 @@ public class Sorter extends MethodBindin
           || child instanceof UISelectBoolean
           || child instanceof UICommand
           || (child instanceof UIInput && TobagoConstants.RENDERER_TYPE_HIDDEN.equals(child.getRendererType()))) {
-        continue;// look for a better component if any
+        continue;
+        // look for a better component if any
       }
       if (child instanceof UIOutput) {
         break;