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
+4-4
Original file line number
Diff line number
Diff line change
@@ -43,28 +43,28 @@ abstract class FactoryAdapter extends DefaultHandler with factory.XMLLoader[Node
43
43
*
44
44
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
45
45
*
46
-
* @since1.1.0
46
+
* @since2.0.0
47
47
*/
48
48
varattribStack=List.empty[MetaData]
49
49
/** List of elements
50
50
*
51
51
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
52
52
*
53
-
* @since1.1.0
53
+
* @since2.0.0
54
54
*/
55
55
varhStack=List.empty[Node] // [ element ] contains siblings
56
56
/** List of element names
57
57
*
58
58
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
59
59
*
60
-
* @since1.1.0
60
+
* @since2.0.0
61
61
*/
62
62
vartagStack=List.empty[String]
63
63
/** List of namespaces
64
64
*
65
65
* 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