ignore package id on searching @type/name

This commit is contained in:
REAndroid 2023-01-17 05:10:43 -05:00
parent a1230bd31c
commit 4439738534

View File

@ -214,8 +214,7 @@
}
}
for(PackageBlock packageBlock:currentPackage.getTableBlock().listPackages()){
if(packageBlock==currentPackage ||
packageBlock.getId()!=currentPackage.getId()){
if(packageBlock==currentPackage){
continue;
}
specTypePair=packageBlock.searchByTypeName(type);