Revision: 1468
          http://stripes.svn.sourceforge.net/stripes/?rev=1468&view=rev
Author:   bengunter
Date:     2012-02-09 19:17:37 +0000 (Thu, 09 Feb 2012)
Log Message:
-----------
Fixed a bug that prevented 1-char writes from sending the single char to output.

Modified Paths:
--------------
    
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutWriter.java

Modified: 
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutWriter.java
===================================================================
--- 
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutWriter.java 
    2012-02-08 14:36:24 UTC (rev 1467)
+++ 
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutWriter.java 
    2012-02-09 19:17:37 UTC (rev 1468)
@@ -164,7 +164,7 @@
             default:
                 if (this.silentState)
                     ++mark;
-                else if (i > mark && i == n - 1)
+                else if (i >= mark && i == n - 1)
                     getOut().write(cbuf, mark, i - mark + 1);
             }
         }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to