-
Notifications
You must be signed in to change notification settings - Fork 21
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
scala.xml.Utility removes attributes when sorting. #7074
Comments
Imported From: https://issues.scala-lang.org/browse/SI-7074?orig=1 |
@ViniciusMiana said: val a = new UnprefixedAttribute("a","3", Null) d: scala.xml.UnprefixedAttribute = d="5" c="1" scala> d.copy(b) This happens because the copy method only takes the first attribute |
@acruise said: defined class UnprefixedAttribute scala> :paste val a = new UnprefixedAttribute("a","3", Null) // Exiting paste mode, now interpreting. a: UnprefixedAttribute = a="3" scala> d.copy(b) |
@acruise said: |
@ViniciusMiana said: abstract def copy(next: MetaData): MetaData I am not sure what it is supposed to do... |
@acruise said: |
@ViniciusMiana said: |
@acruise said: |
@khernyo said: I just checked and the attached patch causes a stack overflow for me: https://github.com/khernyo/scala/commits/issue/7074 The test also checks if the sort method retains the "" vs "" format, but I don't think it's important. |
@acruise said (edited on Feb 20, 2013 12:36:51 AM UTC): |
@khernyo said: |
@khernyo said: |
@som-snytt said: |
Matthew Pickering (matthedude) said: |
In 2.10.0 the
Utility.sort(md: MetaData)
function has broken. An example of when the problem occurs is below, it is for a case where alphabetically the first attribute comes after the proceeding attributes.This works in 2.9.2 where the only difference in any of the sorting functions is in the MetaData sorting function. The value that is returned after sorting some attributes is:
// 2.10.0 Utility.scala smaller.copy(md.copy ( greater ))
In 2.10.0 omitting smaller.append( Null ) loses attributes in some cases. I believe this change should be reverted to 2.9.2.
The text was updated successfully, but these errors were encountered: