jimu-decompiled/sources/com/thoughtworks/xstream/io/naming/NoNameCoder.java
2025-05-13 19:24:51 +02:00

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;
}
}