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 2008/11/12 16:34:11 UTC

svn commit: r713404 - /myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TreeNodeRenderer.java

Author: bommel
Date: Wed Nov 12 07:34:11 2008
New Revision: 713404

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

Modified:
    myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TreeNodeRenderer.java

Modified: myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TreeNodeRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TreeNodeRenderer.java?rev=713404&r1=713403&r2=713404&view=diff
==============================================================================
--- myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TreeNodeRenderer.java (original)
+++ myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TreeNodeRenderer.java Wed Nov 12 07:34:11 2008
@@ -156,14 +156,16 @@
     }
     if (folder) {
       if (image != null) { // application image
-        openSource = ResourceManagerUtil.getImageWithPath(facesContext, ResourceUtils.addPostfixToFilename(image, "open"), true);
+        openSource = ResourceManagerUtil.getImageWithPath(facesContext,
+            ResourceUtils.addPostfixToFilename(image, "open"), true);
       } else { // theme image
         openSource = ResourceManagerUtil.getImageWithPath(facesContext, OPEN_FOLDER);
       }
       source = expanded ? openSource : closedSource;
     } else {
       if (image != null) { // application image
-        source = ResourceManagerUtil.getImageWithPath(facesContext, ResourceUtils.addPostfixToFilename(image, "leaf"), true);
+        source = ResourceManagerUtil.getImageWithPath(facesContext,
+            ResourceUtils.addPostfixToFilename(image, "leaf"), true);
       } else { // theme image
         source = ResourceManagerUtil.getImageWithPath(facesContext, LEAF);
       }