25 lines
663 B
Java
25 lines
663 B
Java
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;
|
|
}
|
|
}
|