You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2008/04/17 10:59:50 UTC

svn commit: r649012 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/render/PrintRendererConfigurator.java

Author: jeremias
Date: Thu Apr 17 01:59:48 2008
New Revision: 649012

URL: http://svn.apache.org/viewvc?rev=649012&view=rev
Log:
Bugfix: Avoid stopping early when no EmbedFontInfos are found during font detection.
Submitted by: Raphael Parree <rparree.at.gmail.com>

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/render/PrintRendererConfigurator.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/render/PrintRendererConfigurator.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/render/PrintRendererConfigurator.java?rev=649012&r1=649011&r2=649012&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/render/PrintRendererConfigurator.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/render/PrintRendererConfigurator.java Thu Apr 17 01:59:48 2008
@@ -236,7 +236,7 @@
             EmbedFontInfo[] embedFontInfos = finder.find(fontUrl, resolver, fontCache);
 
             if (embedFontInfos == null) {
-                return;
+                continue;
             }
 
             for (int i = 0, c = embedFontInfos.length; i < c; i++) {



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org