You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by vh...@apache.org on 2008/01/10 20:35:24 UTC

svn commit: r610893 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/RowPainter.java

Author: vhennebert
Date: Thu Jan 10 11:35:24 2008
New Revision: 610893

URL: http://svn.apache.org/viewvc?rev=610893&view=rev
Log:
The return value of addAreasAndFlushRow is never used, changed it to void

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/RowPainter.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/RowPainter.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/RowPainter.java?rev=610893&r1=610892&r2=610893&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/RowPainter.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/RowPainter.java Thu Jan 10 11:35:24 2008
@@ -145,9 +145,8 @@
      * @param forcedFlush true if the elements must be drawn even if the row isn't
      * finished yet (last row on the page), or if the row is the last of the current table
      * part
-     * @return the height of the (grid) row
      */
-    int addAreasAndFlushRow(boolean forcedFlush) {
+    void addAreasAndFlushRow(boolean forcedFlush) {
         int actualRowHeight = 0;
 
         if (log.isDebugEnabled()) {
@@ -190,7 +189,6 @@
             firstRowIndex = -1;
             rowOffsets.clear();
         }
-        return actualRowHeight;
     }
 
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org