mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-11 07:14:47 +00:00
fix error message validating ConceptMap when size too large
This commit is contained in:
parent
e3f25dd3c3
commit
d014b1f10a
@ -324,7 +324,7 @@ public class ValueSetValidator extends BaseValidator {
|
||||
List<VSCodingValidationRequest> batch = new ArrayList<>();
|
||||
boolean first = true;
|
||||
if (concepts.size() > TOO_MANY_CODES_TO_VALIDATE) {
|
||||
hint(errors, "2023-09-06", IssueType.BUSINESSRULE, stack, false, I18nConstants.VALUESET_INC_TOO_MANY_CODES, batch.size());
|
||||
hint(errors, "2023-09-06", IssueType.BUSINESSRULE, stack, false, I18nConstants.VALUESET_INC_TOO_MANY_CODES, concepts.size());
|
||||
} else {
|
||||
if (((InstanceValidator) parent).isValidateValueSetCodesOnTxServer() && !context.isNoTerminologyServer()) {
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user