15 lines
514 B
Java
15 lines
514 B
Java
package com.thoughtworks.xstream.io.xml;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class XStream11NameCoder extends XmlFriendlyNameCoder {
|
|
@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;
|
|
}
|
|
}
|