Procházet zdrojové kódy

Removed parameter from the endPart method, since the part is already passed as a parameter of the previously called startPart method


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@603975 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_95beta
Vincent Hennebert před 16 roky
rodič
revize
757fdc23d3

+ 1
- 3
src/java/org/apache/fop/fo/flow/table/BorderResolver.java Zobrazit soubor

@@ -44,10 +44,8 @@ interface BorderResolver {

/**
* Receives notification of the end of a table-header/footer/body.
*
* @param part the part that has ended
*/
void endPart(TableBody part);
void endPart();

/**
* Receives notification of the end of the table.

+ 1
- 1
src/java/org/apache/fop/fo/flow/table/CollapsingBorderResolver.java Zobrazit soubor

@@ -393,7 +393,7 @@ class CollapsingBorderResolver implements BorderResolver {
}

/** {@inheritDoc} */
public void endPart(TableBody part) {
public void endPart() {
delegate.endPart();
}


+ 1
- 1
src/java/org/apache/fop/fo/flow/table/FixedColRowGroupBuilder.java Zobrazit soubor

@@ -170,7 +170,7 @@ class FixedColRowGroupBuilder extends RowGroupBuilder {
"A table-cell is spanning more rows than available in its parent element.");
}
setFlagForCols(GridUnit.LAST_IN_PART, lastRow);
borderResolver.endPart(tableBody);
borderResolver.endPart();
inFooter = false;
}


+ 1
- 1
src/java/org/apache/fop/fo/flow/table/SeparateBorderResolver.java Zobrazit soubor

@@ -35,7 +35,7 @@ class SeparateBorderResolver implements BorderResolver {
}

/** {@inheritDoc} */
public void endPart(TableBody part) {
public void endPart() {
}

/** {@inheritDoc} */

Načítá se…
Zrušit
Uložit