fix resolve resolve resource ids

This commit is contained in:
REAndroid 2023-01-05 10:41:05 -05:00
parent aecdc77648
commit a53466bf9a

View File

@ -184,11 +184,7 @@
}
}
for(PackageBlock packageBlock:currentPackage.getTableBlock().listPackages()){
if(packageBlock==currentPackage ||
packageBlock.getId()!=currentPackage.getId()){
continue;
}
for(EntryGroup entryGroup : currentPackage.listEntryGroup()){
for(EntryGroup entryGroup : packageBlock.listEntryGroup()){
if(type.equals(entryGroup.getTypeName()) &&
name.equals(entryGroup.getSpecName())){
return entryGroup;