Skip to content

Commit a359485

Browse files
authored
Merge pull request #301 from ashawley/doc-deprecated-stack
Fix deprecation doc of Stack in FactoryAdapter
2 parents 09811b0 + 1e24710 commit a359485

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: shared/src/main/scala/scala/xml/parsing/FactoryAdapter.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,28 +43,28 @@ abstract class FactoryAdapter extends DefaultHandler with factory.XMLLoader[Node
4343
*
4444
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
4545
*
46-
* @since 1.1.0
46+
* @since 2.0.0
4747
*/
4848
var attribStack = List.empty[MetaData]
4949
/** List of elements
5050
*
5151
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
5252
*
53-
* @since 1.1.0
53+
* @since 2.0.0
5454
*/
5555
var hStack = List.empty[Node] // [ element ] contains siblings
5656
/** List of element names
5757
*
5858
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
5959
*
60-
* @since 1.1.0
60+
* @since 2.0.0
6161
*/
6262
var tagStack = List.empty[String]
6363
/** List of namespaces
6464
*
6565
* Previously was a mutable [[scala.collection.mutable.Stack Stack]], but is now a mutable reference to an immutable [[scala.collection.immutable.List List]].
6666
*
67-
* @since 1.1.0
67+
* @since 2.0.0
6868
*/
6969
var scopeStack = List.empty[NamespaceBinding]
7070

0 commit comments

Comments
 (0)