Skip to content

Commit

Permalink
Fix xml unmarshalling exception in DenonMarantzHttpConnector.java (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterbuts authored Dec 12, 2021
1 parent aba67bc commit 75238b8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,12 +364,12 @@ public PropertyRenamerDelegate(XMLStreamReader xsr) {

@Override
public String getAttributeLocalName(int index) {
return Introspector.decapitalize(super.getAttributeLocalName(index));
return Introspector.decapitalize(super.getAttributeLocalName(index)).intern();
}

@Override
public String getLocalName() {
return Introspector.decapitalize(super.getLocalName());
return Introspector.decapitalize(super.getLocalName()).intern();
}
}
}

0 comments on commit 75238b8

Please sign in to comment.