Skip to content

Commit 68e2187

Browse files
committed
Remove out-of-date version from docs
1 parent 0b6d2f1 commit 68e2187

29 files changed

+1
-36
lines changed

shared/src/main/scala/scala/xml/Attribute.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ package xml
1414
* convenient construction and deconstruction.
1515
*
1616
* @author Burak Emir
17-
* @version 1.0
1817
*/
1918
object Attribute {
2019
def unapply(x: Attribute) = x match {
@@ -47,7 +46,6 @@ object Attribute {
4746
* [[scala.xml.PrefixedAttribute]] and [[scala.xml.UnprefixedAttribute]].
4847
*
4948
* @author Burak Emir
50-
* @version 1.0
5149
*/
5250
abstract trait Attribute extends MetaData {
5351
def pre: String // will be null if unprefixed

shared/src/main/scala/scala/xml/Document.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ package xml
1616
* Also plays the role of an `XMLEvent` for pull parsing.
1717
*
1818
* @author Burak Emir
19-
* @version 1.0, 26/04/2005
2019
*/
2120
@SerialVersionUID(-2289320563321795109L)
2221
class Document extends NodeSeq with pull.XMLEvent with Serializable {

shared/src/main/scala/scala/xml/EntityRef.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ package xml
1313
* The class `EntityRef` implements an XML node for entity references.
1414
*
1515
* @author Burak Emir
16-
* @version 1.0
1716
* @param entityName the name of the entity reference, for example `amp`.
1817
*/
1918
case class EntityRef(entityName: String) extends SpecialNode {

shared/src/main/scala/scala/xml/Group.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ package xml
1313
* A hack to group XML nodes in one node for output.
1414
*
1515
* @author Burak Emir
16-
* @version 1.0
1716
*/
1817
final case class Group(nodes: Seq[Node]) extends Node {
1918
override def theSeq = nodes

shared/src/main/scala/scala/xml/NamespaceBinding.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import Utility.sbToString
1818
* prefix nor uri may be empty, which is not checked.
1919
*
2020
* @author Burak Emir
21-
* @version 1.0
2221
*/
2322
@SerialVersionUID(0 - 2518644165573446725L)
2423
case class NamespaceBinding(prefix: String, uri: String, parent: NamespaceBinding) extends AnyRef with Equality {

shared/src/main/scala/scala/xml/Node.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ package xml
1414
* convenient deconstruction.
1515
*
1616
* @author Burak Emir
17-
* @version 1.0
1817
*/
1918
object Node {
2019
/** the constant empty attribute sequence */
@@ -38,7 +37,6 @@ object Node {
3837
* - [[scala.xml.Text]] — Stand-alone parsed character data
3938
*
4039
* @author Burak Emir and others
41-
* @version 1.1
4240
*/
4341
abstract class Node extends NodeSeq {
4442

shared/src/main/scala/scala/xml/NodeBuffer.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ package xml
1818
* Calling the hashcode function will result in a runtime error.
1919
*
2020
* @author Burak Emir
21-
* @version 1.0
2221
*/
2322
class NodeBuffer extends scala.collection.mutable.ArrayBuffer[Node] {
2423

shared/src/main/scala/scala/xml/NodeSeq.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import scala.language.implicitConversions
1818
* This object ...
1919
*
2020
* @author Burak Emir
21-
* @version 1.0
2221
*/
2322
object NodeSeq {
2423
final val Empty = fromSeq(Nil)
@@ -40,7 +39,6 @@ object NodeSeq {
4039
* and comprehension methods.
4140
*
4241
* @author Burak Emir
43-
* @version 1.0
4442
*/
4543
abstract class NodeSeq extends AbstractSeq[Node] with immutable.Seq[Node] with SeqLike[Node, NodeSeq] with Equality with Serializable {
4644

shared/src/main/scala/scala/xml/Null.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import scala.collection.Iterator
1818
* sort of a linked list of tails.
1919
*
2020
* @author Burak Emir
21-
* @version 1.0
2221
*/
2322
case object Null extends MetaData {
2423
override def iterator = Iterator.empty

shared/src/main/scala/scala/xml/PCData.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ package xml
1515
* sections in the input and is to be preserved as CDATA section in the output.
1616
*
1717
* @author Burak Emir
18-
* @version 1.0
1918
*/
2019
class PCData(data: String) extends Atom[String](data) {
2120

@@ -35,7 +34,6 @@ class PCData(data: String) extends Atom[String](data) {
3534
* convenient construction and deconstruction.
3635
*
3736
* @author Burak Emir
38-
* @version 1.0
3937
*/
4038
object PCData {
4139
def apply(data: String) = new PCData(data)

0 commit comments

Comments
 (0)