You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/04/14 17:43:33 UTC

svn commit: r394124 - /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java

Author: werpu
Date: Fri Apr 14 08:43:32 2006
New Revision: 394124

URL: http://svn.apache.org/viewcvs?rev=394124&view=rev
Log:
fixed a last ref into shared_impl

Modified:
    myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java?rev=394124&r1=394123&r2=394124&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java Fri Apr 14 08:43:32 2006
@@ -289,14 +289,14 @@
     {
         ResponseWriter writer = context.getResponseWriter();
 
-        writer.startElement(org.apache.myfaces.shared_impl.renderkit.html.HTML.SPAN_ELEM, null);
+        writer.startElement(HTML.SPAN_ELEM, null);
         writer.writeAttribute(HTML.ID_ATTR, comp.getClientId(context) + "_loaderImg", null);
         writer.writeAttribute(HTML.CLASS_ATTR, AjaxRendererUtils.STYLECLASS_LOADER, null);
         // could alternatively use a
         // spacer.gif to stretch the span, but didn't want to have another resource dependency.  It would be nice to
         // have a "common" resource repository with spacer.gif and other common things
         writer.write("<spacer type=\"block\" width=\"15\" height=\"15\"/>");
-        writer.endElement(org.apache.myfaces.shared_impl.renderkit.html.HTML.SPAN_ELEM);
+        writer.endElement(HTML.SPAN_ELEM);
 
     }
 }