Browse Source

The return value of addAreasAndFlushRow is never used, changed it to void


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@610893 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_95beta
Vincent Hennebert 16 years ago
parent
commit
6d0258a999
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      src/java/org/apache/fop/layoutmgr/table/RowPainter.java

+ 1
- 3
src/java/org/apache/fop/layoutmgr/table/RowPainter.java View 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;
}

/**

Loading…
Cancel
Save