Initial commit
This commit is contained in:
24
sources/com/thoughtworks/xstream/io/naming/NoNameCoder.java
Normal file
24
sources/com/thoughtworks/xstream/io/naming/NoNameCoder.java
Normal file
@@ -0,0 +1,24 @@
|
||||
package com.thoughtworks.xstream.io.naming;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class NoNameCoder implements NameCoder {
|
||||
@Override // com.thoughtworks.xstream.io.naming.NameCoder
|
||||
public String decodeAttribute(String str) {
|
||||
return str;
|
||||
}
|
||||
|
||||
@Override // com.thoughtworks.xstream.io.naming.NameCoder
|
||||
public String decodeNode(String str) {
|
||||
return str;
|
||||
}
|
||||
|
||||
@Override // com.thoughtworks.xstream.io.naming.NameCoder
|
||||
public String encodeAttribute(String str) {
|
||||
return str;
|
||||
}
|
||||
|
||||
@Override // com.thoughtworks.xstream.io.naming.NameCoder
|
||||
public String encodeNode(String str) {
|
||||
return str;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user