Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

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