diff options
-rw-r--r-- | src/java/org/apache/fop/apps/FopFactory.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/apps/FopFactory.java b/src/java/org/apache/fop/apps/FopFactory.java index e7849a85b..2b4d986bc 100644 --- a/src/java/org/apache/fop/apps/FopFactory.java +++ b/src/java/org/apache/fop/apps/FopFactory.java @@ -189,7 +189,8 @@ public class FopFactory { * @return the new Fop instance * @throws FOPException when the constructor fails */ - public Fop newFop(String outputFormat, FOUserAgent userAgent, OutputStream stream) throws FOPException { + public Fop newFop(String outputFormat, FOUserAgent userAgent, OutputStream stream) + throws FOPException { if (userAgent == null) { throw new NullPointerException("The userAgent parameter must not be null!"); } @@ -510,8 +511,6 @@ public class FopFactory { return cfgBaseDir; } catch (MalformedURLException mue) { log.error("Base URL in user config is malformed!"); - } catch (IOException ioe) { - log.error("Error converting relative base directory to absolute URL."); } } return null; |