You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by ap...@apache.org on 2009/03/14 13:07:57 UTC

svn commit: r753641 - /tiles/framework/trunk/tiles-velocity/src/main/java/org/apache/tiles/velocity/context/VelocityTilesRequestContext.java

Author: apetrelli
Date: Sat Mar 14 12:07:57 2009
New Revision: 753641

URL: http://svn.apache.org/viewvc?rev=753641&view=rev
Log:
TILES-379
The PrintWriter should not be flushed.

Modified:
    tiles/framework/trunk/tiles-velocity/src/main/java/org/apache/tiles/velocity/context/VelocityTilesRequestContext.java

Modified: tiles/framework/trunk/tiles-velocity/src/main/java/org/apache/tiles/velocity/context/VelocityTilesRequestContext.java
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-velocity/src/main/java/org/apache/tiles/velocity/context/VelocityTilesRequestContext.java?rev=753641&r1=753640&r2=753641&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-velocity/src/main/java/org/apache/tiles/velocity/context/VelocityTilesRequestContext.java (original)
+++ tiles/framework/trunk/tiles-velocity/src/main/java/org/apache/tiles/velocity/context/VelocityTilesRequestContext.java Sat Mar 14 12:07:57 2009
@@ -78,8 +78,6 @@
         } catch (ServletException ex) {
             throw ServletUtil.wrapServletException(ex, "ServletException including path '"
                     + path + "'.");
-        } finally {
-            printWriter.flush();
         }
     }