Skip to content

Commit

Permalink
Fix xml unmarshalling exception in DenonMarantzHttpConnector.java (op…
Browse files Browse the repository at this point in the history
…enhab#11766)

Signed-off-by: Michael Schmidt <[email protected]>
  • Loading branch information
pieterbuts authored and mischmidt83 committed Jan 9, 2022
1 parent 431f0d0 commit a6534d7
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 a6534d7

Please sign in to comment.