Skip to content

Commit 9cb2c7f

Browse files
committed
Dropping mutable.stack will be in 1.1.0 not 1.0.7
1 parent 8ba4987 commit 9cb2c7f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shared/src/main/scala/scala/xml/parsing/FactoryAdapter.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,28 +42,28 @@ abstract class FactoryAdapter extends DefaultHandler with factory.XMLLoader[Node
4242
*
4343
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
4444
*
45-
* @since 1.0.7
45+
* @since 1.1.0
4646
*/
4747
var attribStack = List.empty[MetaData]
4848
/** List of elements
4949
*
5050
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
5151
*
52-
* @since 1.0.7
52+
* @since 1.1.0
5353
*/
5454
var hStack = List.empty[Node] // [ element ] contains siblings
5555
/** List of element names
5656
*
5757
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
5858
*
59-
* @since 1.0.7
59+
* @since 1.1.0
6060
*/
6161
var tagStack = List.empty[String]
6262
/** List of namespaces
6363
*
6464
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
6565
*
66-
* @since 1.0.7
66+
* @since 1.1.0
6767
*/
6868
var scopeStack = List.empty[NamespaceBinding]
6969

0 commit comments

Comments
 (0)