pbwest 2004/01/27 22:26:40
Modified: src/java/org/apache/fop/datastructs Tag:
FOP_0-20-0_Alt-Design TNode.java
Log:
Fixed copyright dates.
Synchronized with changes to Node.
Revision Changes Path
No revision
No revision
1.1.2.3 +6 -6 xml-fop/src/java/org/apache/fop/datastructs/Attic/TNode.java
Index: TNode.java
===================================================================
RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/datastructs/Attic/TNode.java,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -r1.1.2.2 -r1.1.2.3
--- TNode.java 26 Jan 2004 23:19:06 -0000 1.1.2.2
+++ TNode.java 28 Jan 2004 06:26:40 -0000 1.1.2.3
@@ -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 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 TNode(TNode parent, Object content) {
- super(parent);
+ super(parent, Node.SYNCHRONIZE);
this.content = content;
}
@@ -63,7 +63,7 @@
public TNode(TNode parent, int index, Object content)
throws IndexOutOfBoundsException {
- super(parent, index);
+ super(parent, index, Node.SYNCHRONIZE);
this.content = content;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]