mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 14:24:44 +00:00
Merge branch 'gg-v5023b' of https://github.com/hapifhir/org.hl7.fhir.core
This commit is contained in:
commit
1b17e5d897
@ -0,0 +1,14 @@
|
||||
Validator:
|
||||
* add support for -bundle parameter to allow validating just one resource (/type) in a bundle
|
||||
* improved reporting of errors and warnings for unknown code systems on required bindings
|
||||
* pass dependencies to the server for imported value sets etc
|
||||
* use server side caching for more efficient use of bandwidth
|
||||
* Fix NPE loading packages from simplifier or old packages (and don't lazy load packages passed to command line)
|
||||
|
||||
Other code changes:
|
||||
* further work on comparing CapabilityStatements (nearly, but not quite, finished)
|
||||
* More work on timeouts in terminology client
|
||||
* Fix for parsing error in R3/R4 sparse arrays for primitives types
|
||||
* Improve terminology client logging
|
||||
* don't reload a package if already loaded
|
||||
* rendering: fix NPEs rendering patient summary, and render expressions for quantities
|
@ -213,7 +213,7 @@ 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())) {
|
||||
if (cr.getPackageInfo() != null && cr.getPackageInfo().getId() != null && cr.getPackageInfo().getId().startsWith("hl7.terminology") && "http://nucc.org/provider-taxonomy".equals(cr.getUrl())) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user