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 2007/11/06 07:46:07 UTC

svn commit: r592310 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java

Author: bommel
Date: Mon Nov  5 22:46:06 2007
New Revision: 592310

URL: http://svn.apache.org/viewvc?rev=592310&view=rev
Log:
(TOBAGO-533) Allow non String value for tip attribute

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java?rev=592310&r1=592309&r2=592310&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java Mon Nov  5 22:46:06 2007
@@ -622,8 +622,8 @@
     return buf.toString();
   }
 
-  public static void renderTip(UIComponent component, TobagoResponseWriter writer ) throws IOException {
-     Object objTip = component.getAttributes().get(ATTR_TIP);
+  public static void renderTip(UIComponent component, TobagoResponseWriter writer) throws IOException {
+    Object objTip = component.getAttributes().get(ATTR_TIP);
     if (objTip != null) {
       writer.writeAttribute(HtmlAttributes.TITLE, String.valueOf(objTip), true);
     }