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 2009/04/26 07:10:29 UTC

svn commit: r768646 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUITreeNode.java

Author: bommel
Date: Sun Apr 26 05:10:28 2009
New Revision: 768646

URL: http://svn.apache.org/viewvc?rev=768646&view=rev
Log:
checkstyle

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUITreeNode.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUITreeNode.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUITreeNode.java?rev=768646&r1=768645&r2=768646&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUITreeNode.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUITreeNode.java Sun Apr 26 05:10:28 2009
@@ -114,7 +114,7 @@
       Object value = getValue();
       // todo: make independent from impl.
       if (value instanceof DefaultMutableTreeNode) {
-        return !((DefaultMutableTreeNode)value).isLeaf();
+        return !((DefaultMutableTreeNode) value).isLeaf();
       }
       LOG.warn("Tree type not supported");
       return true;