File tree 3 files changed +1
-6
lines changed 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,3 @@ private[xml] trait ScalaVersionSpecificNodeSeq
24
24
private [xml] trait ScalaVersionSpecificNodeBuffer { self : NodeBuffer =>
25
25
override def className : String = " NodeBuffer"
26
26
}
27
-
28
- private [xml] trait ScalaVersionSpecificIterableSerializable [+ A ] extends Iterable [A ] {
29
- protected [this ] override def writeReplace (): AnyRef = this
30
- }
Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ abstract class MetaData
82
82
extends AbstractIterable [MetaData ]
83
83
with Iterable [MetaData ]
84
84
with Equality
85
- with ScalaVersionSpecificIterableSerializable [MetaData ]
86
85
with Serializable {
87
86
88
87
/**
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ object NodeSeq {
44
44
*
45
45
* @author Burak Emir
46
46
*/
47
- abstract class NodeSeq extends AbstractSeq [Node ] with immutable.Seq [Node ] with ScalaVersionSpecificNodeSeq with Equality with ScalaVersionSpecificIterableSerializable [ Node ] with Serializable {
47
+ abstract class NodeSeq extends AbstractSeq [Node ] with immutable.Seq [Node ] with ScalaVersionSpecificNodeSeq with Equality with Serializable {
48
48
def theSeq : Seq [Node ]
49
49
def length = theSeq.length
50
50
override def iterator = theSeq.iterator
You can’t perform that action at this time.
0 commit comments