From 3edfeda13a8b994103a5c29d41cc3e53935e86e0 Mon Sep 17 00:00:00 2001 From: Grahame Grieve Date: Mon, 6 Apr 2020 10:20:49 +1000 Subject: [PATCH] Release new version 4.2.14 --- .../org/hl7/fhir/r4/terminologies/ValueSetCheckerSimple.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/terminologies/ValueSetCheckerSimple.java b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/terminologies/ValueSetCheckerSimple.java index ceb1b70e6..57719c381 100644 --- a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/terminologies/ValueSetCheckerSimple.java +++ b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/terminologies/ValueSetCheckerSimple.java @@ -214,8 +214,6 @@ public class ValueSetCheckerSimple implements ValueSetChecker { private String getValueSetSystem() throws FHIRException { if (valueset == null) throw new FHIRException("Unable to resolve system - no value set"); - if (valueset.getCompose().hasExclude()) - throw new FHIRException("Unable to resolve system - value set has excludes"); if (valueset.getCompose().getInclude().size() == 0) { if (!valueset.hasExpansion() || valueset.getExpansion().getContains().size() == 0) throw new FHIRException("Unable to resolve system - value set has no includes or expansion");