Initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.thoughtworks.xstream.io.xml;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class XmlFriendlyReplacer extends XmlFriendlyNameCoder {
|
||||
public XmlFriendlyReplacer() {
|
||||
this("_-", "__");
|
||||
}
|
||||
|
||||
public String escapeName(String str) {
|
||||
return super.encodeNode(str);
|
||||
}
|
||||
|
||||
public String unescapeName(String str) {
|
||||
return super.decodeNode(str);
|
||||
}
|
||||
|
||||
public XmlFriendlyReplacer(String str, String str2) {
|
||||
super(str, str2);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user