]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Removed 'throws IndexOutOfBoundsException' clause from Node(Node) constructor.
authorPeter Bernard West <pbwest@apache.org>
Sat, 28 Feb 2004 02:10:06 +0000 (02:10 +0000)
committerPeter Bernard West <pbwest@apache.org>
Sat, 28 Feb 2004 02:10:06 +0000 (02:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197397 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/datastructs/Node.java

index c3c6ed2c87ad8eb608d70a696993effae9511d84..5796698224b8386b5609e495fe37e2174ca081a5 100644 (file)
@@ -108,8 +108,7 @@ public class Node implements Cloneable {
      *               node. 
      */
 
-    public Node(Node parent)
-        throws IndexOutOfBoundsException {
+    public Node(Node parent) {
         this.parent = parent;
         if (parent != null) {
             parent.addChild(this);