20 lines
664 B
Java
20 lines
664 B
Java
package com.thoughtworks.xstream.io.xml;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class XStream11XmlFriendlyReplacer extends XmlFriendlyReplacer {
|
|
@Override // com.thoughtworks.xstream.io.xml.XmlFriendlyNameCoder, com.thoughtworks.xstream.io.naming.NameCoder
|
|
public String decodeAttribute(String str) {
|
|
return str;
|
|
}
|
|
|
|
@Override // com.thoughtworks.xstream.io.xml.XmlFriendlyNameCoder, com.thoughtworks.xstream.io.naming.NameCoder
|
|
public String decodeNode(String str) {
|
|
return str;
|
|
}
|
|
|
|
@Override // com.thoughtworks.xstream.io.xml.XmlFriendlyReplacer
|
|
public String unescapeName(String str) {
|
|
return str;
|
|
}
|
|
}
|