From: Peter Bernard West Date: Wed, 28 Jan 2004 06:26:40 +0000 (+0000) Subject: Fixed copyright dates. X-Git-Tag: Alt-Design_pre_awt_renderer_import~80 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=22557281d16c22eb438ce143d5e3ce59f446350b;p=xmlgraphics-fop.git Fixed copyright dates. Synchronized with changes to Node. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197280 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/datastructs/TNode.java b/src/java/org/apache/fop/datastructs/TNode.java index 355fb0378..7c9158578 100644 --- a/src/java/org/apache/fop/datastructs/TNode.java +++ b/src/java/org/apache/fop/datastructs/TNode.java @@ -1,5 +1,5 @@ /* - Copyright 2004 The Apache Software Foundation. + Copyright 2002-2004 The Apache Software Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -34,11 +34,11 @@ public class TNode extends Node { } public TNode(Tree tree, TNode parent, int index) { - super(parent, index); + super(parent, index, Node.SYNCHRONIZE); } public TNode(TNode parent) { - super(parent); + super(parent, Node.SYNCHRONIZE); } /** @@ -49,7 +49,7 @@ public class TNode extends Node { */ public TNode(TNode parent, Object content) { - super(parent); + super(parent, Node.SYNCHRONIZE); this.content = content; } @@ -63,7 +63,7 @@ public class TNode extends Node { public TNode(TNode parent, int index, Object content) throws IndexOutOfBoundsException { - super(parent, index); + super(parent, index, Node.SYNCHRONIZE); this.content = content; }