]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
The return value of addAreasAndFlushRow is never used, changed it to void
authorVincent Hennebert <vhennebert@apache.org>
Thu, 10 Jan 2008 19:35:24 +0000 (19:35 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Thu, 10 Jan 2008 19:35:24 +0000 (19:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@610893 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/table/RowPainter.java

index 59a7c9dc5c4e2eefc9863a1f7588cc5e167713c6..228ae333b0cfd9192de3cdd6020023fb4279ebb4 100644 (file)
@@ -145,9 +145,8 @@ class RowPainter {
      * @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 @@ class RowPainter {
             firstRowIndex = -1;
             rowOffsets.clear();
         }
-        return actualRowHeight;
     }
 
     /**