You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionTFHIRValueSetExpander.redundantDisplay(n : TFhirValueSetExpansionContainsW; lang : TIETFLang; use : TFHIRCodingW; value : TFHIRPrimitiveW) : boolean;
3083
3083
begin
3084
-
if ((lang = nil) or lang.code.StartsWith(FValueSet.language)) and ((use = nil) or (use.code = 'display')) then
3085
-
result := value.AsString = n.display
3084
+
ifnot ((lang = nil) and (FValueSet.language = '')) or ((lang <> nil) and lang.code.StartsWith(FValueSet.language)) then
3085
+
result := false
3086
+
elseifnot ((use = nil) or (use.code = 'display')) then
0 commit comments