mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-09 14:31:17 +00:00
hack workaround for UTG NUCC problem.
This commit is contained in:
parent
0b57d266cd
commit
63b93480d9
@ -212,6 +212,11 @@ public class CanonicalResourceManager<T extends CanonicalResource> {
|
||||
}
|
||||
|
||||
public void see(CachedCanonicalResource<T> cr) {
|
||||
// ignore UTG NUCC erroneous code system
|
||||
if (cr.getPackageInfo().getId().startsWith("hl7.terminology") && "http://nucc.org/provider-taxonomy".equals(cr.getUrl())) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (enforceUniqueId && map.containsKey(cr.getId())) {
|
||||
drop(cr.getId());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user