From: Joerg Pietschmann Date: Mon, 24 Feb 2003 19:55:46 +0000 (+0000) Subject: provide a protected constructor to FopImageFactory so that X-Git-Tag: fop-0_20_5rc3~63 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8fae8256b6e3ad9cf94c47bec4d7d27108360715;p=xmlgraphics-fop.git provide a protected constructor to FopImageFactory so that it can't be instantiated (all methods are static). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@195979 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/image/FopImageFactory.java b/src/org/apache/fop/image/FopImageFactory.java index 2ac177ae7..d69fefe52 100644 --- a/src/org/apache/fop/image/FopImageFactory.java +++ b/src/org/apache/fop/image/FopImageFactory.java @@ -27,6 +27,8 @@ import java.util.Map; * @author Eric SCHAEFFER */ public class FopImageFactory { + // prevent instantiation + protected FopImageFactory() {} private static Map m_urlMap = new java.util.HashMap();