]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
removed unneeded code
authorKeiron Liddle <keiron@apache.org>
Thu, 21 Jun 2001 14:58:22 +0000 (14:58 +0000)
committerKeiron Liddle <keiron@apache.org>
Thu, 21 Jun 2001 14:58:22 +0000 (14:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194307 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/svg/SVGElement.java

index 08aa8e598d0a1f15e11a2087ba693e4f80ca63c2..4c2dd58c7fbae728be1f67d068dac3c14fe8f39f 100644 (file)
@@ -137,28 +137,4 @@ public class SVGElement extends Svg {
         /* return status */
         return new Status(Status.OK);
     }
-
-    public void buildTopLevel(Document doc, Element svgRoot)
-    {
-        // build up the info for the top level element
-        for (int count = 0; count < props.length; count++) {
-            if (this.properties.get(props[count]) != null) {
-                String rf = this.properties.get(props[count]).getString();
-                if (rf != null)
-                    svgRoot.setAttributeNS(null, props[count], rf);
-            }
-        }
-        //doc.appendChild(topLevel);
-        int numChildren = this.children.size();
-        for (int i = 0; i < numChildren; i++) {
-            Object child = children.elementAt(i);
-            if (child instanceof SVGObj) {
-                ((SVGObj) child).addGraphic(doc, svgRoot);
-            } else if (child instanceof String) {
-                org.w3c.dom.Text text = doc.createTextNode((String) child);
-                svgRoot.appendChild(text);
-            }
-        }
-
-    }
 }