Browse Source

Fix compile on java 17

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1893338 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-2_7
Simon Steiner 2 years ago
parent
commit
5535c8a658

+ 1
- 1
fop-core/src/main/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java View File

@@ -323,7 +323,7 @@ public class TableLayoutManager extends SpacedBorderedPaddedBlockLayoutManager
}
FONode.FONodeIterator iterator = node.getChildNodes();
while (iterator != null && iterator.hasNext()) {
FONode x = (FONode) iterator.next();
FONode x = iterator.next();
if (!supportResize(x)) {
return false;
}

+ 1
- 1
pom.xml View File

@@ -28,7 +28,7 @@
<project.info.reports.plugin.version>2.8</project.info.reports.plugin.version>
<release.plugin.version>2.5.2</release.plugin.version>
<surefire.plugin.version>2.18.1</surefire.plugin.version>
<war.plugin.version>2.2</war.plugin.version>
<war.plugin.version>3.3.2</war.plugin.version>
<xml.plugin.version>1.0.1</xml.plugin.version>
<xmlgraphics.commons.version>2.6.0-SNAPSHOT</xmlgraphics.commons.version>
<xmlunit.version>1.2</xmlunit.version>

Loading…
Cancel
Save