From: Jeremias Maerki Date: Tue, 8 Nov 2005 09:31:42 +0000 (+0000) Subject: Removed an illegal character that sneaked in when I copied the last patch from a... X-Git-Tag: fop-0_90-alpha1~85 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=dabea7a3e98a3ac9228a1fe2e085995fc1a8120c;p=xmlgraphics-fop.git Removed an illegal character that sneaked in when I copied the last patch from a fop-users post. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@331753 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/render/rtf/RTFHandler.java b/src/java/org/apache/fop/render/rtf/RTFHandler.java index 16d63ca64..612f16b93 100644 --- a/src/java/org/apache/fop/render/rtf/RTFHandler.java +++ b/src/java/org/apache/fop/render/rtf/RTFHandler.java @@ -1,4 +1,4 @@ -/* +/* * Copyright 1999-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -1353,7 +1353,7 @@ public class RTFHandler extends FOEventHandler { if (regionAfter != null) { recurseFONode(regionAfter); - } + } recurseFONode( pageSequence.getMainFlow() ); } else if (foNode instanceof Table) { @@ -1395,13 +1395,13 @@ public class RTFHandler extends FOEventHandler { for (Iterator it = foNode.getChildNodes(); it.hasNext();) { FONode fn = (FONode)it.next(); if (log.isTraceEnabled()) { - log.trace("  ChildNode for " + fn + " (" + fn.getName() + ")"); + log.trace(" ChildNode for " + fn + " (" + fn.getName() + ")"); } recurseFONode(fn); } } } - + invokeDeferredEvent(foNode, false); } }