Author: jeremias
Date: Mon Jan 12 07:22:06 2009
New Revision: 733781

URL: http://svn.apache.org/viewvc?rev=733781&view=rev
Log:
Fixed assert statement.

Modified:
    
xmlgraphics/fop/branches/Temp_AreaTreeNewDesign/src/java/org/apache/fop/afp/ptoca/PtocaBuilder.java

Modified: 
xmlgraphics/fop/branches/Temp_AreaTreeNewDesign/src/java/org/apache/fop/afp/ptoca/PtocaBuilder.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_AreaTreeNewDesign/src/java/org/apache/fop/afp/ptoca/PtocaBuilder.java?rev=733781&r1=733780&r2=733781&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_AreaTreeNewDesign/src/java/org/apache/fop/afp/ptoca/PtocaBuilder.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_AreaTreeNewDesign/src/java/org/apache/fop/afp/ptoca/PtocaBuilder.java
 Mon Jan 12 07:22:06 2009
@@ -343,7 +343,7 @@
         if (incr == this.currentVariableSpaceCharacterIncrement) {
             return;
         }
-        assert incr > 0 && incr < (1 << 16);
+        assert incr >= 0 && incr < (1 << 16);
         newControlSequence();
         writeShort(Math.abs(incr)); //Increment
         commit(chained(SVI));



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to