Suppress XMLException

This commit is contained in:
REAndroid 2022-12-29 05:23:15 -05:00
parent 3aecd1a94c
commit 34b101f989

View File

@ -456,8 +456,10 @@ import java.util.Set;
}else { }else {
EntryGroup group = entryStore.getEntryGroup(resourceId); EntryGroup group = entryStore.getEntryGroup(resourceId);
if(group==null){ if(group==null){
throw new XMLException("Failed to decode attribute name: " //Lets ignore such error until XML encoder implemented
+ String.format("0x%08x", resourceId)); //throw new XMLException("Failed to decode attribute name: "
//+ String.format("@0x%08x", resourceId));
name=String.format("@0x%08x", resourceId);
}else { }else {
name=group.getSpecName(); name=group.getSpecName();
} }