Author: lbernardo
Date: Thu Jun 25 09:32:58 2015
New Revision: 1687458

URL: http://svn.apache.org/r1687458
Log:
FOP-2490: Embedded SVG 1.2 not supported by FOP 2.0; fix submitted by Hussein 
Shafie.

Modified:
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/extensions/svg/SVGDOMContentHandlerFactory.java

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/extensions/svg/SVGDOMContentHandlerFactory.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/extensions/svg/SVGDOMContentHandlerFactory.java?rev=1687458&r1=1687457&r2=1687458&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/extensions/svg/SVGDOMContentHandlerFactory.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/extensions/svg/SVGDOMContentHandlerFactory.java
 Thu Jun 25 09:32:58 2015
@@ -30,6 +30,7 @@ import org.xml.sax.Attributes;
 import org.xml.sax.ContentHandler;
 import org.xml.sax.SAXException;
 
+import org.apache.batik.anim.dom.SVG12DOMImplementation;
 import org.apache.batik.anim.dom.SVGDOMImplementation;
 
 import org.apache.fop.util.ContentHandlerFactory;
@@ -100,14 +101,7 @@ public class SVGDOMContentHandlerFactory
                     || ver.equals("1.0") || ver.equals("1.1")) {
                 return SVGDOMImplementation.getDOMImplementation();
             } else if (ver.equals("1.2")) {
-                try {
-                    Class clazz = Class.forName(
-                            
"org.apache.batik.dom.svg12.SVG12DOMImplementation");
-                    return (DOMImplementation)clazz.getMethod(
-                            "getDOMImplementation", 
(Class[])null).invoke(null, (Object[])null);
-                } catch (Exception e) {
-                    return SVGDOMImplementation.getDOMImplementation();
-                }
+                return SVG12DOMImplementation.getDOMImplementation();
             }
             throw new RuntimeException("Unsupport SVG version '" + ver + "'");
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to