-
Notifications
You must be signed in to change notification settings - Fork 92
NodeBuffer does print as ArrayBuffer #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Milestone
Comments
@jschmuec : Thank you for reporting this. |
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Oct 21, 2016
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Oct 21, 2016
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Dec 1, 2016
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Dec 1, 2016
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Feb 4, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Feb 4, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Feb 4, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Feb 4, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Feb 4, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Feb 4, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Feb 7, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Feb 7, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Feb 15, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Feb 15, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Apr 25, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Apr 25, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Apr 26, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Apr 26, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Apr 26, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Apr 26, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Apr 28, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Apr 28, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Apr 28, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Apr 28, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
May 5, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
May 5, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
May 6, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
May 6, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
May 12, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
May 12, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
May 24, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
May 24, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
May 24, 2017
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
May 24, 2017
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
May 24, 2017
This was fixed in #117. Thanks for reporting this. With any luck, this will be released in 1.0.7 relatively soon. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
new scala.xml.NodeBuffer() &+ scala.xml.Text("Text 1")
should print as:
NodeBuffer(Text 1)
but prints as
ArrayBuffer(Text 1)
.I think you just need to add
override def stringPrefix: String = "NodeBuffer"
The text was updated successfully, but these errors were encountered: