diff options
Diffstat (limited to 'src/java/org/apache/fop/fo/FObjMixed.java')
-rw-r--r-- | src/java/org/apache/fop/fo/FObjMixed.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/FObjMixed.java b/src/java/org/apache/fop/fo/FObjMixed.java index f66b095b1..6d712c9ce 100644 --- a/src/java/org/apache/fop/fo/FObjMixed.java +++ b/src/java/org/apache/fop/fo/FObjMixed.java @@ -149,7 +149,7 @@ public abstract class FObjMixed extends FObj { = this.getChildNodes(this.currentTextNode); FONode node; while (nodeIter.hasNext()) { - node = nodeIter.nextNode(); + node = nodeIter.next(); assert (node instanceof FOText || node.getNameId() == FO_CHARACTER); if (node.getNameId() == FO_CHARACTER) { |