You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: shared/src/main/scala/scala/xml/parsing/FactoryAdapter.scala
+8-8
Original file line number
Diff line number
Diff line change
@@ -40,30 +40,30 @@ abstract class FactoryAdapter extends DefaultHandler with factory.XMLLoader[Node
40
40
valbuffer=newStringBuilder()
41
41
/** List of attributes
42
42
*
43
-
* Previously was a [[scala.collection.mutable.Stack]], but is now a mutable [[scala.collection.immutable.List]].
43
+
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
44
44
*
45
-
* @since 1.0.7
45
+
* @since 1.1.0
46
46
*/
47
47
varattribStack=List.empty[MetaData]
48
48
/** List of elements
49
49
*
50
-
* Previously was a [[scala.collection.mutable.Stack]], but is now a mutable [[scala.collection.immutable.List]].
50
+
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
51
51
*
52
-
* @since 1.0.7
52
+
* @since 1.1.0
53
53
*/
54
54
varhStack=List.empty[Node] // [ element ] contains siblings
55
55
/** List of element names
56
56
*
57
-
* Previously was a [[scala.collection.mutable.Stack]], but is now a mutable [[scala.collection.immutable.List]].
57
+
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
58
58
*
59
-
* @since 1.0.7
59
+
* @since 1.1.0
60
60
*/
61
61
vartagStack=List.empty[String]
62
62
/** List of namespaces
63
63
*
64
-
* Previously was a [[scala.collection.mutable.Stack]], but is now a mutable [[scala.collection.immutable.List]].
64
+
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
0 commit comments