You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2013/08/01 14:08:09 UTC

svn commit: r1509191 - /myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/InRenderer.java

Author: lofwyr
Date: Thu Aug  1 12:08:08 2013
New Revision: 1509191

URL: http://svn.apache.org/r1509191
Log:
checkstyle

Modified:
    myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/InRenderer.java

Modified: myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/InRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/InRenderer.java?rev=1509191&r1=1509190&r2=1509191&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/InRenderer.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/InRenderer.java Thu Aug  1 12:08:08 2013
@@ -71,8 +71,8 @@ public class InRenderer extends InputRen
     final boolean password = ComponentUtil.getBooleanAttribute(input, ATTR_PASSWORD);
     String currentValue = getCurrentValue(facesContext, input);
     if (LOG.isDebugEnabled()) {
-      LOG.debug("currentValue = '" +
-          (password && currentValue != null ? StringUtils.leftPad("", currentValue.length(), '*') : currentValue)
+      LOG.debug("currentValue = '"
+          + (password && currentValue != null ? StringUtils.leftPad("", currentValue.length(), '*') : currentValue)
           + "'");
     }
     String type = password ? "password" : "text";