You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cd...@apache.org on 2006/03/31 04:01:33 UTC

svn commit: r390298 - /portals/pluto/trunk/pluto-taglib/src/main/java/org/apache/pluto/tags/BasicURLTag.java

Author: cdoremus
Date: Thu Mar 30 18:01:32 2006
New Revision: 390298

URL: http://svn.apache.org/viewcvs?rev=390298&view=rev
Log:
Removed call to writer.flush() to fix PLUTO-220.

Modified:
    portals/pluto/trunk/pluto-taglib/src/main/java/org/apache/pluto/tags/BasicURLTag.java

Modified: portals/pluto/trunk/pluto-taglib/src/main/java/org/apache/pluto/tags/BasicURLTag.java
URL: http://svn.apache.org/viewcvs/portals/pluto/trunk/pluto-taglib/src/main/java/org/apache/pluto/tags/BasicURLTag.java?rev=390298&r1=390297&r2=390298&view=diff
==============================================================================
--- portals/pluto/trunk/pluto-taglib/src/main/java/org/apache/pluto/tags/BasicURLTag.java (original)
+++ portals/pluto/trunk/pluto-taglib/src/main/java/org/apache/pluto/tags/BasicURLTag.java Thu Mar 30 18:01:32 2006
@@ -128,7 +128,6 @@
             try {
                 JspWriter writer = pageContext.getOut();
                 writer.print(url);
-                writer.flush();
             } catch (IOException ioe) {
                 throw new JspException(
                     "actionURL/renderURL Tag Exception: cannot write to the output writer.");